Skip to content

Commit 5133a27

Browse files
committed
src: remove usages of GetBackingStore
This removes all usages of GetBackingStore in startup. See the linked issue for an explanation. Refs: nodejs#32226 Refs: nodejs#43921
1 parent c07ea79 commit 5133a27

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/node.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,10 +266,10 @@ static void AtomicsWaitCallback(Isolate::AtomicsWaitEvent event,
266266

267267
fprintf(stderr,
268268
"(node:%d) [Thread %" PRIu64 "] Atomics.wait(%p + %zx, %" PRId64
269-
", %.f) %s\n",
269+
", %.f) %s\n",
270270
static_cast<int>(uv_os_getpid()),
271271
env->thread_id(),
272-
array_buffer->GetBackingStore()->Data(),
272+
array_buffer->Data(),
273273
offset_in_bytes,
274274
value,
275275
timeout_in_ms,

0 commit comments

Comments
 (0)