@@ -19,13 +19,13 @@ use io::prelude::*;
19
19
use ffi:: OsStr ;
20
20
use fmt;
21
21
use io:: { self , Error , ErrorKind } ;
22
- use libc;
23
22
use path;
24
23
use sync:: mpsc:: { channel, Receiver } ;
25
24
use sys:: pipe2:: { self , AnonPipe } ;
26
25
use sys:: process2:: Command as CommandImp ;
27
26
use sys:: process2:: Process as ProcessImp ;
28
27
use sys:: process2:: ExitStatus as ExitStatusImp ;
28
+ use sys:: process2:: Stdio as StdioImp2 ;
29
29
use sys_common:: { AsInner , AsInnerMut } ;
30
30
use thread;
31
31
@@ -229,13 +229,13 @@ impl Command {
229
229
230
230
fn spawn_inner ( & self , default_io : StdioImp ) -> io:: Result < Child > {
231
231
let ( their_stdin, our_stdin) = try!(
232
- setup_io ( self . stdin . as_ref ( ) . unwrap_or ( & default_io) , 0 , true )
232
+ setup_io ( self . stdin . as_ref ( ) . unwrap_or ( & default_io) , true )
233
233
) ;
234
234
let ( their_stdout, our_stdout) = try!(
235
- setup_io ( self . stdout . as_ref ( ) . unwrap_or ( & default_io) , 1 , false )
235
+ setup_io ( self . stdout . as_ref ( ) . unwrap_or ( & default_io) , false )
236
236
) ;
237
237
let ( their_stderr, our_stderr) = try!(
238
- setup_io ( self . stderr . as_ref ( ) . unwrap_or ( & default_io) , 2 , false )
238
+ setup_io ( self . stderr . as_ref ( ) . unwrap_or ( & default_io) , false )
239
239
) ;
240
240
241
241
match ProcessImp :: spawn ( & self . inner , their_stdin, their_stdout, their_stderr) {
@@ -328,23 +328,19 @@ impl AsInnerMut<CommandImp> for Command {
328
328
fn as_inner_mut ( & mut self ) -> & mut CommandImp { & mut self . inner }
329
329
}
330
330
331
- fn setup_io ( io : & StdioImp , fd : libc :: c_int , readable : bool )
332
- -> io:: Result < ( Option < AnonPipe > , Option < AnonPipe > ) >
331
+ fn setup_io ( io : & StdioImp , readable : bool )
332
+ -> io:: Result < ( StdioImp2 , Option < AnonPipe > ) >
333
333
{
334
334
use self :: StdioImp :: * ;
335
335
Ok ( match * io {
336
- Null => {
337
- ( None , None )
338
- }
339
- Inherit => {
340
- ( Some ( AnonPipe :: from_fd ( fd) ) , None )
341
- }
336
+ Null => ( StdioImp2 :: None , None ) ,
337
+ Inherit => ( StdioImp2 :: Inherit , None ) ,
342
338
Piped => {
343
- let ( reader, writer) = try!( unsafe { pipe2:: anon_pipe ( ) } ) ;
339
+ let ( reader, writer) = try!( pipe2:: anon_pipe ( ) ) ;
344
340
if readable {
345
- ( Some ( reader) , Some ( writer) )
341
+ ( StdioImp2 :: Piped ( reader) , Some ( writer) )
346
342
} else {
347
- ( Some ( writer) , Some ( reader) )
343
+ ( StdioImp2 :: Piped ( writer) , Some ( reader) )
348
344
}
349
345
}
350
346
} )
0 commit comments