about summary refs log tree commit diff
path: root/src/rt/rust_sched_loop.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/rt/rust_sched_loop.cpp')
-rw-r--r--src/rt/rust_sched_loop.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/rust_sched_loop.cpp b/src/rt/rust_sched_loop.cpp
index e6297ec475c..a69084fc3ad 100644
--- a/src/rt/rust_sched_loop.cpp
+++ b/src/rt/rust_sched_loop.cpp
@@ -134,7 +134,7 @@ 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.
+    // 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);