Skip to content
Snippets Groups Projects
Commit 98c4280d authored by rswindell's avatar rswindell
Browse files

Increased the default thread stack limit from 128K to 256K to accomodate

Tracker's custom modules. This may be increased in the future to accomodate
even larger (further nested) scripts.
parent 7d5b02c0
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,7 @@
#define JAVASCRIPT_MAX_BYTES (8*1024*1024)
#define JAVASCRIPT_CONTEXT_STACK (16*1024)
#define JAVASCRIPT_THREAD_STACK (128*1024)
#define JAVASCRIPT_THREAD_STACK (256*1024)
#define JAVASCRIPT_BRANCH_LIMIT 99999999
#define JAVASCRIPT_YIELD_INTERVAL 10000
#define JAVASCRIPT_GC_INTERVAL 100
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment