diff options
| author | bors <bors@rust-lang.org> | 2015-05-08 01:32:59 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-05-08 01:32:59 +0000 |
| commit | cf76e637450a861e94ef583340b8f080379a159a (patch) | |
| tree | f01e7c305dbe832c5283d229168223c5e8a24cf7 /src/libstd/process.rs | |
| parent | b402c43f088882db8a03bfcbb5eb8429ef7def0e (diff) | |
| parent | 7529bd60c3cbc4c7b635ee43a89d5b14f6fb8bf7 (diff) | |
| download | rust-cf76e637450a861e94ef583340b8f080379a159a.tar.gz rust-cf76e637450a861e94ef583340b8f080379a159a.zip | |
Auto merge of #25136 - alexcrichton:drop-the-two, r=aturon
* Remove the 2-suffix from some modules * Remove some unused files * Remove double-boxing for `ReentrantMutex`
Diffstat (limited to 'src/libstd/process.rs')
| -rw-r--r-- | src/libstd/process.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libstd/process.rs b/src/libstd/process.rs index 8f8699f4b9f..61398e16ba0 100644 --- a/src/libstd/process.rs +++ b/src/libstd/process.rs @@ -21,11 +21,11 @@ use fmt; use io::{self, Error, ErrorKind}; use path; use sync::mpsc::{channel, Receiver}; -use sys::pipe2::{self, AnonPipe}; -use sys::process2::Command as CommandImp; -use sys::process2::Process as ProcessImp; -use sys::process2::ExitStatus as ExitStatusImp; -use sys::process2::Stdio as StdioImp2; +use sys::pipe::{self, AnonPipe}; +use sys::process::Command as CommandImp; +use sys::process::Process as ProcessImp; +use sys::process::ExitStatus as ExitStatusImp; +use sys::process::Stdio as StdioImp2; use sys_common::{AsInner, AsInnerMut}; use thread; @@ -334,7 +334,7 @@ fn setup_io(io: &StdioImp, readable: bool) Null => (StdioImp2::None, None), Inherit => (StdioImp2::Inherit, None), Piped => { - let (reader, writer) = try!(pipe2::anon_pipe()); + let (reader, writer) = try!(pipe::anon_pipe()); if readable { (StdioImp2::Piped(reader), Some(writer)) } else { |
