2021-08-11 00:42:15 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Shelley Vohr <shelley.vohr@gmail.com>
|
|
|
|
Date: Mon, 9 Aug 2021 18:42:15 +0200
|
|
|
|
Subject: repl: fix crash when SharedArrayBuffer disabled
|
|
|
|
|
|
|
|
It's possible for SharedArrayBuffers to be disabled with
|
|
|
|
--no-harmony-sharedarraybuffer so we first need to check that this
|
|
|
|
isn't the case before attempting to use them in the repl or a crash occurs.
|
|
|
|
|
|
|
|
Upstreamed at https://github.com/nodejs/node/pull/39718.
|
|
|
|
|
|
|
|
diff --git a/benchmark/worker/atomics-wait.js b/benchmark/worker/atomics-wait.js
|
|
|
|
index a771b1813731edf4f0dd60f3505799e389f1d876..b9461677e2d7d1df192e752496e62cca837717b5 100644
|
|
|
|
--- a/benchmark/worker/atomics-wait.js
|
|
|
|
+++ b/benchmark/worker/atomics-wait.js
|
|
|
|
@@ -7,6 +7,10 @@ const bench = common.createBenchmark(main, {
|
|
|
|
});
|
|
|
|
|
|
|
|
function main({ n }) {
|
|
|
|
+ if (typeof SharedArrayBuffer === 'undefined') {
|
|
|
|
+ throw new Error('SharedArrayBuffers must be enabled to run this benchmark');
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
const i32arr = new Int32Array(new SharedArrayBuffer(4));
|
|
|
|
bench.start();
|
|
|
|
for (let i = 0; i < n; i++)
|
|
|
|
diff --git a/lib/internal/main/worker_thread.js b/lib/internal/main/worker_thread.js
|
2022-05-09 22:55:49 +00:00
|
|
|
index a8167b86ca2e5a11b2628e20063849e85a200a8c..110a3ed1637b642b1d83fb36549cced151b9c5cd 100644
|
2021-08-11 00:42:15 +00:00
|
|
|
--- a/lib/internal/main/worker_thread.js
|
|
|
|
+++ b/lib/internal/main/worker_thread.js
|
|
|
|
@@ -9,7 +9,7 @@ const {
|
|
|
|
ArrayPrototypeSplice,
|
|
|
|
ObjectDefineProperty,
|
|
|
|
PromisePrototypeCatch,
|
|
|
|
- globalThis: { Atomics },
|
|
|
|
+ globalThis: { Atomics, SharedArrayBuffer },
|
|
|
|
} = primordials;
|
|
|
|
|
|
|
|
const {
|
2022-05-09 22:55:49 +00:00
|
|
|
@@ -146,6 +146,9 @@ port.on('message', (message) => {
|
2021-08-11 00:42:15 +00:00
|
|
|
const originalCwd = process.cwd;
|
|
|
|
|
|
|
|
process.cwd = function() {
|
|
|
|
+ // SharedArrayBuffers can be disabled with --no-harmony-sharedarraybuffer.
|
|
|
|
+ if (typeof SharedArrayBuffer === 'undefined') return originalCwd();
|
|
|
|
+
|
|
|
|
const currentCounter = Atomics.load(cwdCounter, 0);
|
|
|
|
if (currentCounter === lastCounter)
|
|
|
|
return cachedCwd;
|
|
|
|
diff --git a/lib/internal/worker.js b/lib/internal/worker.js
|
2021-10-14 07:43:48 +00:00
|
|
|
index 1d2cd8cefd2996c6a4f84ea08e6b4c53a22dc418..28b1a9a53b13036297a2ed3271c36cbe14c51a32 100644
|
2021-08-11 00:42:15 +00:00
|
|
|
--- a/lib/internal/worker.js
|
|
|
|
+++ b/lib/internal/worker.js
|
2021-10-14 07:43:48 +00:00
|
|
|
@@ -90,7 +90,8 @@ let cwdCounter;
|
2021-08-11 00:42:15 +00:00
|
|
|
|
|
|
|
const environmentData = new SafeMap();
|
|
|
|
|
|
|
|
-if (isMainThread) {
|
|
|
|
+// SharedArrayBuffers can be disabled with --no-harmony-sharedarraybuffer.
|
|
|
|
+if (isMainThread && typeof SharedArrayBuffer !== 'undefined') {
|
|
|
|
cwdCounter = new Uint32Array(new SharedArrayBuffer(4));
|
|
|
|
const originalChdir = process.chdir;
|
|
|
|
process.chdir = function(path) {
|