File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 90372da5a824cf947d262dd600b2255506852f1d
2
+ refs/heads/master: 9c1476e7a4c148bd04bed06218e606d21bd57084
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 2f46b763da2c098913884f101b6d71d69af41b49
5
5
refs/heads/try: 3d5418789064fdb463e872a4e651af1c628a3650
Original file line number Diff line number Diff line change @@ -62,8 +62,8 @@ a normal large stack.
62
62
*/
63
63
pub unsafe fn run_in_bare_thread ( f : ~fn ( ) ) {
64
64
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
67
67
do task:: spawn_sched ( task:: SingleThreaded ) unsafe {
68
68
let closure: & fn ( ) = || {
69
69
f ( )
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ fn inject_libcore_ref(sess: Session,
68
68
} ;
69
69
new_module = fld. fold_mod ( new_module) ;
70
70
71
- // XXX : Bad copy.
71
+ // FIXME #2543 : Bad copy.
72
72
let new_crate = ast:: crate_ { module : new_module, ..copy crate } ;
73
73
( new_crate, span)
74
74
} ,
@@ -94,7 +94,7 @@ fn inject_libcore_ref(sess: Session,
94
94
95
95
let vis = vec:: append ( ~[ vi2] , module. view_items ) ;
96
96
97
- // XXX : Bad copy.
97
+ // FIXME #2543 : Bad copy.
98
98
let new_module = { view_items: vis, ..copy module } ;
99
99
fold:: noop_fold_mod ( new_module, fld)
100
100
} ,
You can’t perform that action at this time.
0 commit comments