Skip to content

Commit cb4adab

Browse files
committed
lib: do not crash using workers with disabled shared array buffers
This allows the repl to function normally while using the `--no-harmony-sharedarraybuffer` V8 flag. Fixes: nodejs#39717 Signed-off-by: Ruben Bridgewater <[email protected]>
1 parent 265a47d commit cb4adab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/internal/bootstrap/switches/does_own_process_state.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const rawMethods = internalBinding('process_methods');
66
process.abort = rawMethods.abort;
77
process.umask = wrappedUmask;
88
process.chdir = wrappedChdir;
9-
process.cwd = wrappedCwd;
9+
process.cwd = typeof SharedArrayBuffer === 'undefined' ? rawMethods.cwd : wrappedCwd;
1010

1111
if (credentials.implementsPosixCredentials) {
1212
const wrapped = wrapPosixCredentialSetters(credentials);

lib/internal/worker.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ let cwdCounter;
9090

9191
const environmentData = new SafeMap();
9292

93-
if (isMainThread) {
93+
if (isMainThread && typeof SharedArrayBuffer !== 'undefined') {
9494
cwdCounter = new Uint32Array(new SharedArrayBuffer(4));
9595
const originalChdir = process.chdir;
9696
process.chdir = function(path) {

0 commit comments

Comments
 (0)