Remove obsolete FIXME

brson said it's obsolete and I trust him.

Closes #2695
This commit is contained in:
Tim Chevalier 2012-06-28 10:50:29 -07:00
parent 0a00b32bb3
commit c79b76d499

View file

@ -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.