rt: Increase C_STACK_SIZE to 2MB to get JIT/rusti working again (dlopen segfaults)

This commit is contained in:
Zack Corr 2013-03-21 15:15:47 +10:00
parent 9814d0d412
commit 280b8a243e

View File

@ -19,7 +19,7 @@ pthread_key_t rust_sched_loop::task_key;
DWORD rust_sched_loop::task_key;
#endif
const size_t C_STACK_SIZE = 1024*1024;
const size_t C_STACK_SIZE = 2*1024*1024;
bool rust_sched_loop::tls_initialized = false;