Comments only: TODOs to FIXME in the runtime

This commit is contained in:
Tim Chevalier
2012-07-12 18:20:39 -07:00
parent fe77e962a8
commit 81ecd272d3
7 changed files with 10 additions and 9 deletions

View File

@@ -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);
}