aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Dylan Conway <dylan.conway567@gmail.com> 2023-10-11 15:26:55 -0700
committerGravatar Dylan Conway <dylan.conway567@gmail.com> 2023-10-11 15:26:55 -0700
commita59a69e21baefc0bb3c671ec9a688b02ad126790 (patch)
tree2a6e07e5966dba40963480c7767f1bc3e5a0b485
parent4c9e0099719895eaf95e3149256bf8d1338d2378 (diff)
downloadbun-a59a69e21baefc0bb3c671ec9a688b02ad126790.tar.gz
bun-a59a69e21baefc0bb3c671ec9a688b02ad126790.tar.zst
bun-a59a69e21baefc0bb3c671ec9a688b02ad126790.zip
Update JSCUSocketsLoopIntegration.cpp
-rw-r--r--src/bun.js/bindings/JSCUSocketsLoopIntegration.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bun.js/bindings/JSCUSocketsLoopIntegration.cpp b/src/bun.js/bindings/JSCUSocketsLoopIntegration.cpp
index 4db97d116..0e3fcf47d 100644
--- a/src/bun.js/bindings/JSCUSocketsLoopIntegration.cpp
+++ b/src/bun.js/bindings/JSCUSocketsLoopIntegration.cpp
@@ -19,12 +19,12 @@
extern "C" void bun_on_tick_before(JSC::VM* vm)
{
#if ACQUIRE_RELEASE_HEAP_ACCESS
- vm->heap.releaseAccess();
+ // vm->heap.releaseAccess();
#endif
}
extern "C" void bun_on_tick_after(JSC::VM* vm)
{
#if ACQUIRE_RELEASE_HEAP_ACCESS
- vm->heap.acquireAccess();
+ // vm->heap.acquireAccess();
#endif
} \ No newline at end of file