about summary refs log tree commit diff
path: root/src/libcore/task.rs
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2012-04-12 23:38:25 -0700
committerTim Chevalier <chevalier@alum.wellesley.edu>2012-04-12 23:38:25 -0700
commit93a1f5e85fb2d17c4dfca7a282d9bf6805dfaa16 (patch)
treeeac1a570517624e1b407ca0cfdc6f2e1dd197444 /src/libcore/task.rs
parenta1b305c8e526700e3e16e51d576691ac4ebdc335 (diff)
downloadrust-93a1f5e85fb2d17c4dfca7a282d9bf6805dfaa16.tar.gz
rust-93a1f5e85fb2d17c4dfca7a282d9bf6805dfaa16.zip
Annotate FIXMEs in core::task
Diffstat (limited to 'src/libcore/task.rs')
-rw-r--r--src/libcore/task.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/task.rs b/src/libcore/task.rs
index b29d503dff8..2c91b0de011 100644
--- a/src/libcore/task.rs
+++ b/src/libcore/task.rs
@@ -65,7 +65,7 @@ A task that completes without failing and whose supervised children complete
 without failing is considered to exit successfully.
 
 FIXME: This description does not indicate the current behavior for linked
-failure.
+failure. (See #1868)
 "]
 enum task_result {
     success,
@@ -486,7 +486,7 @@ fn spawn_raw(opts: task_opts, +f: fn~()) unsafe {
         // FIXME: The runtime supervision API is weird here because it
         // was designed to let the child unsupervise itself, when what
         // we actually want is for parents to unsupervise new
-        // children.
+        // children. (#1868, #1789)
         fn~() {
             rustrt::unsupervise();
             f();