about summary refs log tree commit diff
path: root/src/libstd/task
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2013-07-12 14:43:57 -0700
committerTim Chevalier <chevalier@alum.wellesley.edu>2013-08-21 17:17:41 -0700
commit5da4b4d928c6507f6e67b2d2a4289eef4b8de0ea (patch)
tree36503ae5a3f77bc69cd23dc331f3639994d496bd /src/libstd/task
parent77279a73cbafb1735e5cf53820fde65d5cd05957 (diff)
downloadrust-5da4b4d928c6507f6e67b2d2a4289eef4b8de0ea.tar.gz
rust-5da4b4d928c6507f6e67b2d2a4289eef4b8de0ea.zip
std/extra: changing XXX to FIXME; cleanup
* Get rid of by-value-self workarounds; it works now
* Remove type annotations, they're not needed anymore
Diffstat (limited to 'src/libstd/task')
-rw-r--r--src/libstd/task/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/task/mod.rs b/src/libstd/task/mod.rs
index 0d2e62a7700..5ffa03dec26 100644
--- a/src/libstd/task/mod.rs
+++ b/src/libstd/task/mod.rs
@@ -543,7 +543,7 @@ pub fn deschedule() {
     use rt::local::Local;
     use rt::sched::Scheduler;
 
-    // XXX: What does yield really mean in newsched?
+    // FIXME #6842: What does yield really mean in newsched?
     // FIXME(#7544): Optimize this, since we know we won't block.
     let sched = Local::take::<Scheduler>();
     do sched.deschedule_running_task_and_then |sched, task| {