Skip to content

Commit 63c38d2

Browse files
committed
---
yaml --- r: 34672 b: refs/heads/master c: 2749076 h: refs/heads/master v: v3
1 parent d1719f0 commit 63c38d2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: fc4da29b4f5e5b5eb4a5c47c724edde399d28145
2+
refs/heads/master: 27490769cee7d06e5514786a4728260ab4dcc36b
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: eb8fd119c65c67f3b1b8268cc7341c22d39b7b61
55
refs/heads/try: d324a424d8f84b1eb049b12cf34182bda91b0024

trunk/src/libcore/task.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ pub type TaskOpts = {
217217
// sidestep that whole issue by making builders uncopyable and making
218218
// the run function move them in.
219219

220-
// FIXME (#2585): Replace the 'consumed' bit with move mode on self
220+
// FIXME (#3724): Replace the 'consumed' bit with move mode on self
221221
pub enum TaskBuilder = {
222222
opts: TaskOpts,
223223
gen_body: fn@(v: fn~()) -> fn~(),
@@ -349,7 +349,7 @@ impl TaskBuilder {
349349
* Fails if a future_result was already set for this task.
350350
*/
351351
fn future_result(blk: fn(v: future::Future<TaskResult>)) -> TaskBuilder {
352-
// FIXME (#1087, #1857): Once linked failure and notification are
352+
// FIXME (#3725): Once linked failure and notification are
353353
// handled in the library, I can imagine implementing this by just
354354
// registering an arbitrary number of task::on_exit handlers and
355355
// sending out messages.
@@ -758,8 +758,8 @@ pub unsafe fn atomically<U>(f: fn() -> U) -> U {
758758
fn test_cant_dup_task_builder() {
759759
let b = task().unlinked();
760760
do b.spawn { }
761-
// FIXME(#2585): For now, this is a -runtime- failure, because we haven't
762-
// got modes on self. When 2585 is fixed, this test should fail to compile
761+
// FIXME(#3724): For now, this is a -runtime- failure, because we haven't
762+
// got move mode on self. When 3724 is fixed, this test should fail to compile
763763
// instead, and should go in tests/compile-fail.
764764
do b.spawn { } // b should have been consumed by the previous call
765765
}

0 commit comments

Comments
 (0)