Skip to content

Commit 24c1869

Browse files
authored
src: remove usages of GetBackingStore in startup
This removes all usages of GetBackingStore in startup. See the linked issue for an explanation. Refs: nodejs#32226 Refs: nodejs#43921 PR-URL: nodejs#44078 Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Feng Yu <F3n67u@outlook.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
1 parent edba8a4 commit 24c1869

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/node.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -262,10 +262,10 @@ static void AtomicsWaitCallback(Isolate::AtomicsWaitEvent event,
262262

263263
fprintf(stderr,
264264
"(node:%d) [Thread %" PRIu64 "] Atomics.wait(%p + %zx, %" PRId64
265-
", %.f) %s\n",
265+
", %.f) %s\n",
266266
static_cast<int>(uv_os_getpid()),
267267
env->thread_id(),
268-
array_buffer->GetBackingStore()->Data(),
268+
array_buffer->Data(),
269269
offset_in_bytes,
270270
value,
271271
timeout_in_ms,

0 commit comments

Comments
 (0)