diff options
| author | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-07-12 18:20:39 -0700 |
|---|---|---|
| committer | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-07-12 19:06:08 -0700 |
| commit | 81ecd272d349a744a3a5f21b7eb4ef3c79d9188f (patch) | |
| tree | a0fb57f645e37cdb918817b9a3d859b9c6b473b5 /src/rt/rust_builtin.cpp | |
| parent | fe77e962a826ac41354a7b1b4afa08c527e86e8c (diff) | |
| download | rust-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.cpp | 4 |
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); } |
