diff options
| author | bors <bors@rust-lang.org> | 2013-07-31 02:10:24 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-07-31 02:10:24 -0700 |
| commit | 8b7e241e02bb9f82d7b931033afde477d03ff4f2 (patch) | |
| tree | 84f3b2d5a4f8f81f86b7a04ab937d4a0d18a8366 /src/libstd/rt/task.rs | |
| parent | 8a737b502067b1896686bd1f9df7a1446296d80b (diff) | |
| parent | 33df9fc1d04c224a0c7ecb8d91b75feed75b412c (diff) | |
| download | rust-8b7e241e02bb9f82d7b931033afde477d03ff4f2.tar.gz rust-8b7e241e02bb9f82d7b931033afde477d03ff4f2.zip | |
auto merge of #8139 : brson/rust/rm-old-task-apis, r=pcwalton
This removes a bunch of options from the task builder interface that are irrelevant to the new scheduler and were generally unused anyway. It also bumps the stack size of new scheduler tasks so that there's enough room to run rustc and changes the interface to `Thread` to not implicitly join threads on destruction, but instead require an explicit, and mandatory, call to `join`.
Diffstat (limited to 'src/libstd/rt/task.rs')
| -rw-r--r-- | src/libstd/rt/task.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/rt/task.rs b/src/libstd/rt/task.rs index 8cf864b9222..82d4f8fcc04 100644 --- a/src/libstd/rt/task.rs +++ b/src/libstd/rt/task.rs @@ -219,7 +219,7 @@ impl Drop for Task { impl Coroutine { pub fn new(stack_pool: &mut StackPool, start: ~fn()) -> Coroutine { - static MIN_STACK_SIZE: uint = 100000; // XXX: Too much stack + static MIN_STACK_SIZE: uint = 2000000; // XXX: Too much stack let start = Coroutine::build_start_wrapper(start); let mut stack = stack_pool.take_segment(MIN_STACK_SIZE); |
