Skip to content

Commit 65d0918

Browse files
committed
---
yaml --- r: 35865 b: refs/heads/try2 c: 2749076 h: refs/heads/master i: 35863: 29af686 v: v3
1 parent 15701b1 commit 65d0918

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
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: eb8fd119c65c67f3b1b8268cc7341c22d39b7b61
55
refs/heads/try: d324a424d8f84b1eb049b12cf34182bda91b0024
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: fc4da29b4f5e5b5eb4a5c47c724edde399d28145
8+
refs/heads/try2: 27490769cee7d06e5514786a4728260ab4dcc36b
99
refs/heads/incoming: d9317a174e434d4c99fc1a37fd7dc0d2f5328d37
1010
refs/heads/dist-snap: 22efa39382d41b084fde1719df7ae8ce5697d8c9
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/try2/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)