diff options
| author | Rafael Ávila de Espíndola <respindola@mozilla.com> | 2011-05-24 17:28:37 -0400 |
|---|---|---|
| committer | Rafael Ávila de Espíndola <respindola@mozilla.com> | 2011-05-24 17:28:37 -0400 |
| commit | b1292580b95ea4a2ab22682ff04a91004c44cd06 (patch) | |
| tree | b2401d3316a815ee79108ed2745d247dad5beecd /src/rt/rust_task.cpp | |
| parent | 0fc91b6ecc975bf508ec631a9fe3ea19e8df4579 (diff) | |
| download | rust-b1292580b95ea4a2ab22682ff04a91004c44cd06.tar.gz rust-b1292580b95ea4a2ab22682ff04a91004c44cd06.zip | |
Remove dead code for unwind_glue.
Diffstat (limited to 'src/rt/rust_task.cpp')
| -rw-r--r-- | src/rt/rust_task.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rt/rust_task.cpp b/src/rt/rust_task.cpp index 09665e11298..db72be6d12d 100644 --- a/src/rt/rust_task.cpp +++ b/src/rt/rust_task.cpp @@ -349,7 +349,7 @@ rust_task::kill() { dom->fail(); LOG(this, task, "preparing to unwind task: 0x%" PRIxPTR, this); - run_on_resume(dom->root_crate->get_unwind_glue()); + // run_on_resume(rust_unwind_glue); } void @@ -361,7 +361,7 @@ rust_task::fail(size_t nargs) { unblock(); if (this == dom->root_task) dom->fail(); - run_after_return(nargs, dom->root_crate->get_unwind_glue()); + // run_after_return(nargs, rust_unwind_glue); if (supervisor) { DLOG(dom, task, "task %s @0x%" PRIxPTR |
