File tree Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 2
2
refs/heads/master: 2d28d645422c1617be58c8ca7ad9a457264ca850
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 2d28d645422c1617be58c8ca7ad9a457264ca850
5
- refs/heads/try: 10355d7a7d1ba87d49149e5fcdc5d3955932afe2
5
+ refs/heads/try: 272c3c2cfb1008ffc4437599ce94aad59e0b72b7
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
Original file line number Diff line number Diff line change @@ -64,7 +64,6 @@ pub fn log_type<T>(level: u32, object: &T) {
64
64
}
65
65
66
66
fn newsched_log_str ( msg : ~str ) {
67
-
68
67
unsafe {
69
68
match rt:: local_services:: unsafe_try_borrow_local_services ( ) {
70
69
Some ( local) => {
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ impl Reader for TcpStream {
56
56
match bytes_read {
57
57
Ok ( read) => Some ( read) ,
58
58
Err ( _) => {
59
- abort ! ( "TODO " ) ;
59
+ abort ! ( "XXX " ) ;
60
60
}
61
61
}
62
62
}
@@ -70,7 +70,7 @@ impl Writer for TcpStream {
70
70
match res {
71
71
Ok ( _) => ( ) ,
72
72
Err ( _) => {
73
- abort ! ( "TODO " ) ;
73
+ abort ! ( "XXX " ) ;
74
74
}
75
75
}
76
76
}
@@ -107,7 +107,7 @@ impl Listener<TcpStream> for TcpListener {
107
107
Some ( TcpStream :: new ( s) )
108
108
}
109
109
Err ( _) => {
110
- abort ! ( "TODO " ) ;
110
+ abort ! ( "XXX " ) ;
111
111
}
112
112
}
113
113
}
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ pub fn borrow(f: &fn(&mut Scheduler)) {
63
63
unsafe {
64
64
let unsafe_sched = cast:: transmute_mut_region ( & mut * sched) ;
65
65
let sched = Cell ( sched) ;
66
-
66
+
67
67
do ( || {
68
68
f ( unsafe_sched) ;
69
69
} ) . finally {
You can’t perform that action at this time.
0 commit comments