File tree Expand file tree Collapse file tree 6 files changed +5
-7
lines changed
branches/try/src/libcore/rt Expand file tree Collapse file tree 6 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 2
2
refs/heads/master: 5f13e9ccc2e3328d4cd8ca49f84e6840dd998346
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: f7a2371c176663d59062ec5158f39faecba45768
5
- refs/heads/try: 42cba98509c6da6e7f99d1d8c87f3051cb9598d4
5
+ refs/heads/try: 9a075f264a1024a3c03edc033be59971ad590171
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 @@ -30,7 +30,7 @@ macro_rules! rtdebug (
30
30
)
31
31
32
32
mod sched;
33
- mod io ;
33
+ mod rtio ;
34
34
pub mod uvll;
35
35
mod uvio;
36
36
mod uv;
File renamed without changes.
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ use ptr::mut_null;
16
16
17
17
use super :: work_queue:: WorkQueue ;
18
18
use super :: stack:: { StackPool , StackSegment } ;
19
- use super :: io :: { EventLoop , EventLoopObject } ;
19
+ use super :: rtio :: { EventLoop , EventLoopObject } ;
20
20
use super :: context:: Context ;
21
21
use tls = super :: thread_local_storage;
22
22
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ use ptr::null;
45
45
use sys:: size_of;
46
46
use super :: uvll;
47
47
use super :: uvll:: * ;
48
- use super :: io :: { IpAddr , Ipv4 , Ipv6 } ;
48
+ use super :: rtio :: { IpAddr , Ipv4 , Ipv6 } ;
49
49
use unstable:: finally:: Finally ;
50
50
51
51
#[ cfg( test) ] use unstable:: run_in_bare_thread;
Original file line number Diff line number Diff line change @@ -12,13 +12,11 @@ use option::*;
12
12
use result:: * ;
13
13
14
14
use super :: uv:: * ;
15
- use super :: io :: * ;
15
+ use super :: rtio :: * ;
16
16
use ops:: Drop ;
17
17
use cell:: { Cell , empty_cell} ;
18
18
use cast:: transmute;
19
- use super :: StreamObject ;
20
19
use super :: sched:: Scheduler ;
21
- use super :: IoFactoryObject ;
22
20
23
21
#[ cfg( test) ] use super :: sched:: Task ;
24
22
#[ cfg( test) ] use unstable:: run_in_bare_thread;
You can’t perform that action at this time.
0 commit comments