diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2013-04-18 18:05:05 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2013-04-19 12:00:08 -0700 |
| commit | 9902e798d5bdc983228cdf82242ff52409dd76e6 (patch) | |
| tree | cb12757ade7dcf7c22214d259b95cca063eeb5dd /src | |
| parent | c995a62d44ce8534d4f8bf36284419661b87e167 (diff) | |
| download | rust-9902e798d5bdc983228cdf82242ff52409dd76e6.tar.gz rust-9902e798d5bdc983228cdf82242ff52409dd76e6.zip | |
rt: Remove dump_stacks
Diffstat (limited to 'src')
| -rw-r--r-- | src/rt/rust_task.cpp | 1 | ||||
| -rw-r--r-- | src/rt/rust_task.h | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/src/rt/rust_task.cpp b/src/rt/rust_task.cpp index 6db138b418e..7e146cce68e 100644 --- a/src/rt/rust_task.cpp +++ b/src/rt/rust_task.cpp @@ -595,7 +595,6 @@ rust_task::new_big_stack() { } else { stk_seg *borrowed_big_stack = sched_loop->borrow_big_stack(); if (!borrowed_big_stack) { - dump_stacks(); abort(); } else { big_stack = borrowed_big_stack; diff --git a/src/rt/rust_task.h b/src/rt/rust_task.h index e8b3ef44ac0..34d5a5a86f2 100644 --- a/src/rt/rust_task.h +++ b/src/rt/rust_task.h @@ -291,8 +291,6 @@ private: char const *file, size_t line); - void dump_stacks(); - friend void task_start_wrapper(spawn_args *a); friend void cleanup_task(cleanup_args *a); friend void reset_stack_limit_on_c_stack(reset_args *a); |
