contexts.hpp: Increase callstack reserve space to 16k for Mac64. Fixes issue #1419.

db4
Doug Coleman 2015-08-04 12:43:24 -07:00
parent 9d021bb081
commit dcc1e7773f
1 changed files with 2 additions and 2 deletions

View File

@ -15,8 +15,8 @@ enum context_object {
/* When the callstack fills up (e.g by to deep recursion), a callstack
overflow error is triggered. So before continuing executing on it
in general_error(), we chop off this many bytes to have some space
to work with. */
static const cell stack_reserved = 4096;
to work with. Mac OSX 64 bit needs more than 8192. See issue #1419. */
static const cell stack_reserved = 16384;
struct context {