nodejs/test/parallel/test-worker-message-channel-sharedarraybuffer.js
James M Snell 97a3a8204c test: replace more uses of global with globalThis
PR-URL: https://github.com/nodejs/node/pull/56712
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
2025-01-25 07:23:11 +00:00

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 ');
}