Increase stack stize

parent 6f94097f
...@@ -281,9 +281,9 @@ wadj_thr_start(struct wadj_prop *prop) ...@@ -281,9 +281,9 @@ wadj_thr_start(struct wadj_prop *prop)
return; return;
} }
AZ(pthread_attr_init(&attr)); AZ(pthread_attr_init(&attr));
// 32K JIT + 32K general + buf // 128k jit/general + buf
assert(prop->bufsz > 0); assert(prop->bufsz > 0);
sz = 64 * 1024 + (size_t)prop->bufsz; sz = 128 * 1024 + (size_t)prop->bufsz;
AZ(pthread_attr_setstacksize(&attr, sz)); AZ(pthread_attr_setstacksize(&attr, sz));
prop->run = STARTING; prop->run = STARTING;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment