From c4a33f788f0f0d68e476a8f1569d8f4fcdf115ed Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Tue, 9 Jun 2020 17:16:42 +0200 Subject: [PATCH] src: remove unused `ERR_TRANSFERRING_EXTERNALIZED_SHAREDARRAYBUFFER` Removed in 2bdeb88c27b4d8de3a8f6b7a438cf0bcb88fa927. Refs: https://github.com/nodejs/node/pull/30020 PR-URL: https://github.com/nodejs/node/pull/33810 Reviewed-By: James M Snell Reviewed-By: Gus Caplan Reviewed-By: Colin Ihrig --- doc/api/errors.md | 24 ++++++++++++++---------- src/node_errors.h | 3 --- 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/doc/api/errors.md b/doc/api/errors.md index d0fadad28427a0..a98571edd61942 100644 --- a/doc/api/errors.md +++ b/doc/api/errors.md @@ -1967,16 +1967,6 @@ category. The `trace_events` module could not be loaded because Node.js was compiled with the `--without-v8-platform` flag. - -### `ERR_TRANSFERRING_EXTERNALIZED_SHAREDARRAYBUFFER` - -A `SharedArrayBuffer` whose memory is not managed by the JavaScript engine -or by Node.js was encountered during serialization. Such a `SharedArrayBuffer` -cannot be serialized. - -This can only happen when native addons create `SharedArrayBuffer`s in -"externalized" mode, or put existing `SharedArrayBuffer` into externalized mode. - ### `ERR_TRANSFORM_ALREADY_TRANSFORMING` @@ -2413,6 +2403,20 @@ removed: v10.0.0 Used when a TLS renegotiation request has failed in a non-specific way. + +### `ERR_TRANSFERRING_EXTERNALIZED_SHAREDARRAYBUFFER` + + +A `SharedArrayBuffer` whose memory is not managed by the JavaScript engine +or by Node.js was encountered during serialization. Such a `SharedArrayBuffer` +cannot be serialized. + +This can only happen when native addons create `SharedArrayBuffer`s in +"externalized" mode, or put existing `SharedArrayBuffer` into externalized mode. + ### `ERR_UNKNOWN_BUILTIN_MODULE`