mirror of
https://github.com/oven-sh/bun
synced 2026-02-16 22:01:47 +00:00
Co-authored-by: 190n <7763597+190n@users.noreply.github.com> Co-authored-by: Ashcon Partovi <ashcon@partovi.net> Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> Co-authored-by: Dylan Conway <35280289+dylan-conway@users.noreply.github.com> Co-authored-by: Don Isaac <donald.isaac@gmail.com> Co-authored-by: chloe caruso <git@paperclover.net>
29 lines
843 B
JavaScript
29 lines
843 B
JavaScript
// Flags: --expose-gc
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const { Worker } = require('worker_threads');
|
|
|
|
{
|
|
const sharedArrayBuffer = new SharedArrayBuffer(12);
|
|
const local = Buffer.from(sharedArrayBuffer);
|
|
|
|
const w = new Worker(`
|
|
const { parentPort } = require('worker_threads');
|
|
parentPort.on('message', ({ sharedArrayBuffer }) => {
|
|
const local = Buffer.from(sharedArrayBuffer);
|
|
local.write('world!', 6);
|
|
parentPort.postMessage('written!');
|
|
});
|
|
`, { eval: true });
|
|
w.on('message', common.mustCall(() => {
|
|
assert.strictEqual(local.toString(), 'Hello world!');
|
|
globalThis.gc();
|
|
w.terminate();
|
|
}));
|
|
w.postMessage({ sharedArrayBuffer });
|
|
// This would be a race condition if the memory regions were overlapping
|
|
local.write('Hello ');
|
|
}
|