We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98ec79c commit eb61432Copy full SHA for eb61432
src/libstd/rt/task.rs
@@ -326,7 +326,7 @@ impl Drop for Task {
326
impl Coroutine {
327
328
pub fn new(stack_pool: &mut StackPool, start: ~fn()) -> Coroutine {
329
- static MIN_STACK_SIZE: uint = 3000000; // XXX: Too much stack
+ static MIN_STACK_SIZE: uint = 2000000; // XXX: Too much stack
330
331
let start = Coroutine::build_start_wrapper(start);
332
let mut stack = stack_pool.take_segment(MIN_STACK_SIZE);
0 commit comments