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-21 14:17:54 -0700
committerTim Chevalier <chevalier@alum.wellesley.edu>2012-06-21 16:03:28 -0700
commitc814df0bd67ba52357074d9f9a56327f93fdfcda (patch)
tree08367039f3be827e98a808fb7d90be23e98226b2 /src/rt/rust_sched_loop.cpp
parentbe8b09160bb6cefc239a8ede5e4ac01e1d61adf9 (diff)
downloadrust-c814df0bd67ba52357074d9f9a56327f93fdfcda.tar.gz
rust-c814df0bd67ba52357074d9f9a56327f93fdfcda.zip
Comments only: annotate FIXMEs
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);