-
Beta Was this translation helpful? Give feedback.
Answered by
saghul
Jan 24, 2025
Replies: 2 comments 14 replies
-
In Debug mode enable leak dumping (see the DUMPLEAKS flag in quickjs.c). When you exit the interpreter it will print the leaked objects. |
Beta Was this translation helpful? Give feedback.
13 replies
-
@yudaosi out of curiosity, what kind of IoT devices are those? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can tune the GC by setting a lower start threshold with
JS_SetGCThreshold
or by callingJS_RunGC
yourself.