@@ -2156,39 +2156,6 @@ added: v12.0.0
21562156Set default [ ` tls.DEFAULT_MIN_VERSION ` ] [ ] to 'TLSv1.3'. Use to disable support
21572157for TLSv1.2, which is not as secure as TLSv1.3.
21582158
2159- ### ` --trace-atomics-wait `
2160-
2161- <!-- YAML
2162- added: v14.3.0
2163- deprecated:
2164- - v18.8.0
2165- - v16.18.0
2166- -->
2167-
2168- > Stability: 0 - Deprecated
2169-
2170- Print short summaries of calls to [ ` Atomics.wait() ` ] [ ] to stderr.
2171- The output could look like this:
2172-
2173- ``` text
2174- (node:15701) [Thread 0] Atomics.wait(<address> + 0, 1, inf) started
2175- (node:15701) [Thread 0] Atomics.wait(<address> + 0, 1, inf) did not wait because the values mismatched
2176- (node:15701) [Thread 0] Atomics.wait(<address> + 0, 0, 10) started
2177- (node:15701) [Thread 0] Atomics.wait(<address> + 0, 0, 10) timed out
2178- (node:15701) [Thread 0] Atomics.wait(<address> + 4, 0, inf) started
2179- (node:15701) [Thread 1] Atomics.wait(<address> + 4, -1, inf) started
2180- (node:15701) [Thread 0] Atomics.wait(<address> + 4, 0, inf) was woken up by another thread
2181- (node:15701) [Thread 1] Atomics.wait(<address> + 4, -1, inf) was woken up by another thread
2182- ```
2183-
2184- The fields here correspond to:
2185-
2186- * The thread id as given by [ ` worker_threads.threadId ` ] [ ]
2187- * The base address of the ` SharedArrayBuffer ` in question, as well as the
2188- byte offset corresponding to the index passed to ` Atomics.wait() `
2189- * The expected value that was passed to ` Atomics.wait() `
2190- * The timeout passed to ` Atomics.wait `
2191-
21922159### ` --trace-deprecation `
21932160
21942161<!-- YAML
@@ -2718,7 +2685,6 @@ one is included in the list below.
27182685* ` --tls-min-v1.1 `
27192686* ` --tls-min-v1.2 `
27202687* ` --tls-min-v1.3 `
2721- * ` --trace-atomics-wait `
27222688* ` --trace-deprecation `
27232689* ` --trace-event-categories `
27242690* ` --trace-event-file-pattern `
@@ -3181,7 +3147,6 @@ node --stack-trace-limit=12 -p -e "Error.stackTraceLimit" # prints 12
31813147[ `--print` ] : #-p---print-script
31823148[ `--redirect-warnings` ] : #--redirect-warningsfile
31833149[ `--require` ] : #-r---require-module
3184- [ `Atomics.wait()` ] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/wait
31853150[ `Buffer` ] : buffer.md#class-buffer
31863151[ `CRYPTO_secure_malloc_init` ] : https://www.openssl.org/docs/man3.0/man3/CRYPTO_secure_malloc_init.html
31873152[ `NODE_OPTIONS` ] : #node_optionsoptions
@@ -3201,7 +3166,6 @@ node --stack-trace-limit=12 -p -e "Error.stackTraceLimit" # prints 12
32013166[ `tls.DEFAULT_MIN_VERSION` ] : tls.md#tlsdefault_min_version
32023167[ `unhandledRejection` ] : process.md#event-unhandledrejection
32033168[ `v8.startupSnapshot` API ] : v8.md#startup-snapshot-api
3204- [ `worker_threads.threadId` ] : worker_threads.md#workerthreadid
32053169[ collecting code coverage from tests ] : test.md#collecting-code-coverage
32063170[ conditional exports ] : packages.md#conditional-exports
32073171[ context-aware ] : addons.md#context-aware-addons
0 commit comments