aboutsummaryrefslogtreecommitdiff
path: root/src/bun.js/api/bun.zig
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-07-29 05:54:54 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-07-29 05:54:54 -0700
commit09c899ea24ddcbd464584b9d1b935545d8e72a64 (patch)
treec66bf7869e598dd27dc15b54886f70ed9c390eb4 /src/bun.js/api/bun.zig
parentaca48ee3f593d3436cec8c5fc65f54ce0c07def2 (diff)
downloadbun-jarred/fastmalloc.tar.gz
bun-jarred/fastmalloc.tar.zst
bun-jarred/fastmalloc.zip
Comment out usages of arenajarred/fastmalloc
Diffstat (limited to 'src/bun.js/api/bun.zig')
-rw-r--r--src/bun.js/api/bun.zig3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bun.js/api/bun.zig b/src/bun.js/api/bun.zig
index 85d2e7f83..5b7f9a513 100644
--- a/src/bun.js/api/bun.zig
+++ b/src/bun.js/api/bun.zig
@@ -1375,7 +1375,8 @@ fn dump_mimalloc(
_: []const JSC.C.JSValueRef,
_: JSC.C.ExceptionRef,
) JSC.C.JSValueRef {
- globalThis.bunVM().arena.dumpStats();
+ _ = globalThis;
+ // globalThis.bunVM().arena.dumpStats();
return JSC.JSValue.jsUndefined().asObjectRef();
}