Skip to content

Commit 280b8a2

Browse files
committed
rt: Increase C_STACK_SIZE to 2MB to get JIT/rusti working again (dlopen segfaults)
1 parent 9814d0d commit 280b8a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rt/rust_sched_loop.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pthread_key_t rust_sched_loop::task_key;
1919
DWORD rust_sched_loop::task_key;
2020
#endif
2121

22-
const size_t C_STACK_SIZE = 1024*1024;
22+
const size_t C_STACK_SIZE = 2*1024*1024;
2323

2424
bool rust_sched_loop::tls_initialized = false;
2525

0 commit comments

Comments
 (0)