about summary refs log tree commit diff
path: root/src/rt/rust_task.cpp
diff options
context:
space:
mode:
authorBen Blum <bblum@andrew.cmu.edu>2012-07-24 17:35:08 -0400
committerBen Blum <bblum@andrew.cmu.edu>2012-07-24 17:35:08 -0400
commit2040a5c632caa8b0918979c552530782ca9e4a81 (patch)
tree87b0c671205b600df5a805541275f5c35d42f5ec /src/rt/rust_task.cpp
parentf42a5a1acd125982ab19abf3e892a819aceab45a (diff)
downloadrust-2040a5c632caa8b0918979c552530782ca9e4a81.tar.gz
rust-2040a5c632caa8b0918979c552530782ca9e4a81.zip
tiny runtime cleanup
Diffstat (limited to 'src/rt/rust_task.cpp')
-rw-r--r--src/rt/rust_task.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/rt/rust_task.cpp b/src/rt/rust_task.cpp
index e9879525ee7..014e8e7948d 100644
--- a/src/rt/rust_task.cpp
+++ b/src/rt/rust_task.cpp
@@ -295,12 +295,6 @@ void rust_task::kill_inner() {
     LOG(this, task, "preparing to unwind task: 0x%" PRIxPTR, this);
 }
 
-// (bblum): Move this to rust_builtin.cpp (cleanup)
-extern "C" CDECL
-bool rust_task_is_unwinding(rust_task *rt) {
-    return rt->unwinding;
-}
-
 void
 rust_task::fail() {
     // See note in ::kill() regarding who should call this.