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-13 20:33:08 -0400
committerBen Blum <bblum@andrew.cmu.edu>2012-07-13 20:33:08 -0400
commit1f2ee4b384c70f27d6b2e264f883b6760fb4b18e (patch)
tree6838cff426945389d28497bb2abe0aabc8693f10 /src/rt/rust_task.cpp
parentd39a33687c2cf19652c6d324aed7f7fdfeb6c476 (diff)
downloadrust-1f2ee4b384c70f27d6b2e264f883b6760fb4b18e.tar.gz
rust-1f2ee4b384c70f27d6b2e264f883b6760fb4b18e.zip
Oops, switch more TODOs to FIXMEs
Diffstat (limited to 'src/rt/rust_task.cpp')
-rw-r--r--src/rt/rust_task.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rt/rust_task.cpp b/src/rt/rust_task.cpp
index db4db51d3cf..64ee56a5115 100644
--- a/src/rt/rust_task.cpp
+++ b/src/rt/rust_task.cpp
@@ -10,7 +10,7 @@
 #include "rust_env.h"
 #include "rust_port.h"
 
-// TODO(bblum): get rid of supervisors
+// FIXME (#1789) (bblum): get rid of supervisors
 
 // Tasks
 rust_task::rust_task(rust_sched_loop *sched_loop, rust_task_state state,
@@ -293,7 +293,7 @@ rust_task::kill() {
     LOG(this, task, "preparing to unwind task: 0x%" PRIxPTR, this);
 }
 
-// TODO(bblum): Move this to rust_builtin.cpp (cleanup)
+// (bblum): Move this to rust_builtin.cpp (cleanup)
 extern "C" CDECL
 bool rust_task_is_unwinding(rust_task *rt) {
     return rt->unwinding;