about summary refs log tree commit diff
path: root/src/rt/rust_builtin.cpp
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2012-07-12 18:20:39 -0700
committerTim Chevalier <chevalier@alum.wellesley.edu>2012-07-12 19:06:08 -0700
commit81ecd272d349a744a3a5f21b7eb4ef3c79d9188f (patch)
treea0fb57f645e37cdb918817b9a3d859b9c6b473b5 /src/rt/rust_builtin.cpp
parentfe77e962a826ac41354a7b1b4afa08c527e86e8c (diff)
downloadrust-81ecd272d349a744a3a5f21b7eb4ef3c79d9188f.tar.gz
rust-81ecd272d349a744a3a5f21b7eb4ef3c79d9188f.zip
Comments only: TODOs to FIXME in the runtime
Diffstat (limited to 'src/rt/rust_builtin.cpp')
-rw-r--r--src/rt/rust_builtin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rt/rust_builtin.cpp b/src/rt/rust_builtin.cpp
index 55f1f8bf17e..ffba7b0da6a 100644
--- a/src/rt/rust_builtin.cpp
+++ b/src/rt/rust_builtin.cpp
@@ -938,8 +938,8 @@ task_clear_event_reject(rust_task *task) {
 // task.
 extern "C" void *
 task_wait_event(rust_task *task, bool *killed) {
-    // TODO: we should assert that the passed in task is the currently running
-    // task. We wouldn't want to wait some other task.
+    // FIXME #2890: we should assert that the passed in task is the currently
+    // running task. We wouldn't want to wait some other task.
 
     return task->wait_event(killed);
 }