You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// The named-call stack is used only when there is a locative, EXCEPT that after a call to 18!:4 it is used until the function calling 18!:4 returns.
534
534
// Since startup calls 18!:4 without a name, we have to allow for the possibility of deep recursion in the name stack. Normally only a little of the stack is used
535
+
#if defined(_WIN32)
535
536
#defineCSTACKSIZE (SY_64?12009472:1015808) // size we allocate in the calling function, aligned to 16k system page size
537
+
#else
538
+
#defineCSTACKSIZE (SY_64?7946240:1015808) // OS default stack size 8MB, aligned to 16k system page size
539
+
#endif
536
540
#defineCSTACKRESERVE 100000 // amount we allow for slop before we sample the stackpointer, and after the last check
537
541
#else
538
542
// OBSOLETE OLD WAY (with USECSTACK off)
@@ -2153,7 +2157,7 @@ extern JS gjt; // global for JPF (procs without jt)
2153
2157
/* strchr fails for CE MIPS - neg chars - spellit fails in ws.c for f=.+. */
0 commit comments