Skip to content

Commit 4a9b106

Browse files
committed
---
yaml --- r: 41817 b: refs/heads/master c: 9c1476e h: refs/heads/master i: 41815: e54347f v: v3
1 parent 48ee154 commit 4a9b106

File tree

3 files changed

+5
-5
lines changed

3 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: 90372da5a824cf947d262dd600b2255506852f1d
2+
refs/heads/master: 9c1476e7a4c148bd04bed06218e606d21bd57084
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 2f46b763da2c098913884f101b6d71d69af41b49
55
refs/heads/try: 3d5418789064fdb463e872a4e651af1c628a3650

trunk/src/libcore/private.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ a normal large stack.
6262
*/
6363
pub unsafe fn run_in_bare_thread(f: ~fn()) {
6464
let (port, chan) = pipes::stream();
65-
// XXX Unfortunate that this creates an extra scheduler but it's necessary
66-
// since rust_raw_thread_join_delete is blocking
65+
// FIXME #4525: Unfortunate that this creates an extra scheduler but it's
66+
// necessary since rust_raw_thread_join_delete is blocking
6767
do task::spawn_sched(task::SingleThreaded) unsafe {
6868
let closure: &fn() = || {
6969
f()

trunk/src/librustc/front/core_inject.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ fn inject_libcore_ref(sess: Session,
6868
};
6969
new_module = fld.fold_mod(new_module);
7070

71-
// XXX: Bad copy.
71+
// FIXME #2543: Bad copy.
7272
let new_crate = ast::crate_ { module: new_module, ..copy crate };
7373
(new_crate, span)
7474
},
@@ -94,7 +94,7 @@ fn inject_libcore_ref(sess: Session,
9494

9595
let vis = vec::append(~[vi2], module.view_items);
9696

97-
// XXX: Bad copy.
97+
// FIXME #2543: Bad copy.
9898
let new_module = { view_items: vis, ..copy module };
9999
fold::noop_fold_mod(new_module, fld)
100100
},

0 commit comments

Comments
 (0)