2023-04-19 14:29:18 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Shelley Vohr <shelley.vohr@gmail.com>
|
|
|
|
Date: Wed, 19 Apr 2023 14:13:23 +0200
|
|
|
|
Subject: chore: remove --no-harmony-atomics related code
|
|
|
|
|
|
|
|
This was removed in https://chromium-review.googlesource.com/c/v8/v8/+/4416459.
|
|
|
|
|
|
|
|
This patch can be removed when Node.js upgrades to a version of V8 containing
|
|
|
|
the above CL.
|
|
|
|
|
|
|
|
diff --git a/lib/.eslintrc.yaml b/lib/.eslintrc.yaml
|
2023-11-30 14:51:35 +00:00
|
|
|
index 942d7cc1305eb4cf327de5666551435802f0dbac..991c65215488b9526758b9aca96842ad17fc018e 100644
|
2023-04-19 14:29:18 +00:00
|
|
|
--- a/lib/.eslintrc.yaml
|
|
|
|
+++ b/lib/.eslintrc.yaml
|
|
|
|
@@ -33,10 +33,6 @@ rules:
|
|
|
|
message: Use `const { AbortController } = require('internal/abort_controller');` instead of the global.
|
|
|
|
- name: AbortSignal
|
|
|
|
message: Use `const { AbortSignal } = require('internal/abort_controller');` instead of the global.
|
|
|
|
- # Atomics is not available in primordials because it can be
|
|
|
|
- # disabled with --no-harmony-atomics CLI flag.
|
|
|
|
- - name: Atomics
|
|
|
|
- message: Use `const { Atomics } = globalThis;` instead of the global.
|
|
|
|
- name: Blob
|
|
|
|
message: Use `const { Blob } = require('buffer');` instead of the global.
|
|
|
|
- name: BroadcastChannel
|
|
|
|
diff --git a/lib/internal/main/worker_thread.js b/lib/internal/main/worker_thread.js
|
2023-11-30 14:51:35 +00:00
|
|
|
index 12ae4a9b23212d3f8ff1566a1c2b815a47d3838a..4460042d7bfbb8286a9b2abcbfb9e44f21b5d944 100644
|
2023-04-19 14:29:18 +00:00
|
|
|
--- a/lib/internal/main/worker_thread.js
|
|
|
|
+++ b/lib/internal/main/worker_thread.js
|
2023-11-30 14:51:35 +00:00
|
|
|
@@ -112,7 +112,7 @@ port.on('message', (message) => {
|
2023-04-19 14:29:18 +00:00
|
|
|
|
|
|
|
require('internal/worker').assignEnvironmentData(environmentData);
|
|
|
|
|
|
|
|
- if (SharedArrayBuffer !== undefined && Atomics !== undefined) {
|
|
|
|
+ if (SharedArrayBuffer !== undefined) {
|
|
|
|
// The counter is only passed to the workers created by the main thread,
|
|
|
|
// not to workers created by other workers.
|
|
|
|
let cachedCwd = '';
|
|
|
|
diff --git a/lib/internal/worker.js b/lib/internal/worker.js
|
2023-11-30 14:51:35 +00:00
|
|
|
index 401bc43550ea7f19847dfd588e3fba0507243905..560f69c6c2de2bd976bcd62cd7ac9c770b838446 100644
|
2023-04-19 14:29:18 +00:00
|
|
|
--- a/lib/internal/worker.js
|
|
|
|
+++ b/lib/internal/worker.js
|
2023-11-30 14:51:35 +00:00
|
|
|
@@ -101,8 +101,7 @@ let cwdCounter;
|
2023-04-19 14:29:18 +00:00
|
|
|
const environmentData = new SafeMap();
|
|
|
|
|
|
|
|
// SharedArrayBuffers can be disabled with --no-harmony-sharedarraybuffer.
|
|
|
|
-// Atomics can be disabled with --no-harmony-atomics.
|
|
|
|
-if (isMainThread && SharedArrayBuffer !== undefined && Atomics !== undefined) {
|
|
|
|
+if (isMainThread && SharedArrayBuffer !== undefined) {
|
|
|
|
cwdCounter = new Uint32Array(new SharedArrayBuffer(4));
|
|
|
|
const originalChdir = process.chdir;
|
|
|
|
process.chdir = function(path) {
|