about summary refs log tree commit diff
path: root/src/rt/rust_sched_loop.cpp
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2012-06-28 10:50:29 -0700
committerTim Chevalier <chevalier@alum.wellesley.edu>2012-06-28 10:51:14 -0700
commitc79b76d4991d89f19acd6b3a4802269a5a278e24 (patch)
tree907db80a225696e4162fb642c1b46ea3e5a476c6 /src/rt/rust_sched_loop.cpp
parent0a00b32bb377ce818b601bfc7356e039c99b4d79 (diff)
downloadrust-c79b76d4991d89f19acd6b3a4802269a5a278e24.tar.gz
rust-c79b76d4991d89f19acd6b3a4802269a5a278e24.zip
Remove obsolete FIXME
brson said it's obsolete and I trust him.

Closes #2695
Diffstat (limited to 'src/rt/rust_sched_loop.cpp')
-rw-r--r--src/rt/rust_sched_loop.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/rt/rust_sched_loop.cpp b/src/rt/rust_sched_loop.cpp
index a69084fc3ad..1cf9b275427 100644
--- a/src/rt/rust_sched_loop.cpp
+++ b/src/rt/rust_sched_loop.cpp
@@ -134,8 +134,6 @@ rust_task *
 rust_sched_loop::schedule_task() {
     lock.must_have_lock();
     assert(this);
-    // FIXME: in the face of failing tasks, this is not always right. (#2695)
-    // assert(n_live_tasks() > 0);
     if (running_tasks.length() > 0) {
         size_t k = isaac_rand(&rctx);
         // Look around for a runnable task, starting at k.