Skip to content

Commit c9495d4

Browse files
kvakilFyko
authored andcommitted
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 <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Feng Yu <[email protected]> Reviewed-By: Chengzhong Wu <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent 4b2d755 commit c9495d4

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)