diff options
| author | Zack Corr <zack@z0w0.me> | 2013-03-21 15:15:47 +1000 |
|---|---|---|
| committer | Zack Corr <zack@z0w0.me> | 2013-03-21 15:15:47 +1000 |
| commit | 280b8a243ea5e40c6b1f85bd645ed7b12fb35022 (patch) | |
| tree | 070a9073f4ec00618f48eb57b2f0abc321064472 /src/rt/rust_sched_loop.cpp | |
| parent | 9814d0d4128b07d4c40dc721c977f9216fd55e91 (diff) | |
| download | rust-280b8a243ea5e40c6b1f85bd645ed7b12fb35022.tar.gz rust-280b8a243ea5e40c6b1f85bd645ed7b12fb35022.zip | |
rt: Increase C_STACK_SIZE to 2MB to get JIT/rusti working again (dlopen segfaults)
Diffstat (limited to 'src/rt/rust_sched_loop.cpp')
| -rw-r--r-- | src/rt/rust_sched_loop.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/rust_sched_loop.cpp b/src/rt/rust_sched_loop.cpp index c215752d8dd..90393acdd59 100644 --- a/src/rt/rust_sched_loop.cpp +++ b/src/rt/rust_sched_loop.cpp @@ -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; |
