libcore: Remove task::set_min_stack

This existed to make up for the lack of stack growth, and wasn't generally
safe.
This commit is contained in:
Brian Anderson
2011-12-18 14:10:36 -08:00
parent 22ac628e8c
commit 12cde6ebee
5 changed files with 0 additions and 27 deletions

View File

@@ -41,7 +41,6 @@ export join;
export unsupervise;
export pin;
export unpin;
export set_min_stack;
export task_result;
export tr_success;
export tr_failure;
@@ -65,8 +64,6 @@ native mod rustrt {
fn get_task_id() -> task_id;
fn rust_get_task() -> *rust_task;
fn set_min_stack(stack_size: uint);
fn new_task() -> task_id;
fn drop_task(task_id: *rust_task);
fn get_task_pointer(id: task_id) -> *rust_task;
@@ -216,15 +213,6 @@ Unpin the current task and future child tasks
*/
fn unpin() { rustrt::unpin_task(); }
/*
Function: set_min_stack
Set the minimum stack size (in bytes) for tasks spawned in the future.
This function has global effect and should probably not be used.
*/
fn set_min_stack(stack_size: uint) { rustrt::set_min_stack(stack_size); }
/*
Function: spawn