diff options
author | 2023-10-11 15:26:55 -0700 | |
---|---|---|
committer | 2023-10-11 15:26:55 -0700 | |
commit | a59a69e21baefc0bb3c671ec9a688b02ad126790 (patch) | |
tree | 2a6e07e5966dba40963480c7767f1bc3e5a0b485 | |
parent | 4c9e0099719895eaf95e3149256bf8d1338d2378 (diff) | |
download | bun-a59a69e21baefc0bb3c671ec9a688b02ad126790.tar.gz bun-a59a69e21baefc0bb3c671ec9a688b02ad126790.tar.zst bun-a59a69e21baefc0bb3c671ec9a688b02ad126790.zip |
Update JSCUSocketsLoopIntegration.cpp
-rw-r--r-- | src/bun.js/bindings/JSCUSocketsLoopIntegration.cpp | 4 |
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 |