diff options
| author | bors <bors@rust-lang.org> | 2015-06-11 08:22:39 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-06-11 08:22:39 +0000 |
| commit | f6341a878e46084b3afca1f331ed470fb2bd092e (patch) | |
| tree | 2216d96dc5dae4058cee267f6c3d0a1e044b3d2b /src/libstd/sys/windows/process.rs | |
| parent | cf0edd0ad941a4a569e8afb17494cb1eb53373e9 (diff) | |
| parent | 56a5ff284a0a49558381230d5711cced9cba4605 (diff) | |
| download | rust-f6341a878e46084b3afca1f331ed470fb2bd092e.tar.gz rust-f6341a878e46084b3afca1f331ed470fb2bd092e.zip | |
Auto merge of #26159 - alexcrichton:tweak-process-lowering-raising, r=brson
* Slate these features to be stable in 1.2 instead of 1.1 (not being backported) * Have the `FromRawFd` implementations follow the contract of the `FromRawFd` trait by taking ownership of the primitive specified. * Refactor the implementations slightly to remove the `unreachable!` blocks as well as separating the stdio representation of `std::process` from `std::sys::process`. cc #25494
Diffstat (limited to 'src/libstd/sys/windows/process.rs')
| -rw-r--r-- | src/libstd/sys/windows/process.rs | 22 |
1 files changed, 5 insertions, 17 deletions
diff --git a/src/libstd/sys/windows/process.rs b/src/libstd/sys/windows/process.rs index 05073e60f5d..0b0268d4746 100644 --- a/src/libstd/sys/windows/process.rs +++ b/src/libstd/sys/windows/process.rs @@ -28,7 +28,6 @@ use sync::StaticMutex; use sys::c; use sys::fs::{OpenOptions, File}; use sys::handle::{Handle, RawHandle}; -use sys::pipe::AnonPipe; use sys::stdio; use sys::{self, cvt}; use sys_common::{AsInner, FromInner}; @@ -107,11 +106,12 @@ pub struct Process { pub enum Stdio { Inherit, - Piped(AnonPipe), None, - Handle(RawHandle), + Raw(libc::HANDLE), } +pub type RawStdio = Handle; + impl Process { pub fn spawn(cfg: &Command, in_handle: Stdio, @@ -356,15 +356,6 @@ fn make_dirp(d: Option<&OsString>) -> (*const u16, Vec<u16>) { } impl Stdio { - pub fn clone_if_copy(&self) -> Stdio { - match *self { - Stdio::Inherit => Stdio::Inherit, - Stdio::None => Stdio::None, - Stdio::Handle(handle) => Stdio::Handle(handle), - Stdio::Piped(_) => unreachable!(), - } - } - fn to_handle(&self, stdio_id: libc::DWORD) -> io::Result<Handle> { use libc::DUPLICATE_SAME_ACCESS; @@ -374,11 +365,8 @@ impl Stdio { io.handle().duplicate(0, true, DUPLICATE_SAME_ACCESS) }) } - Stdio::Handle(ref handle) => { - handle.duplicate(0, true, DUPLICATE_SAME_ACCESS) - } - Stdio::Piped(ref pipe) => { - pipe.handle().duplicate(0, true, DUPLICATE_SAME_ACCESS) + Stdio::Raw(handle) => { + RawHandle::new(handle).duplicate(0, true, DUPLICATE_SAME_ACCESS) } // Similarly to unix, we don't actually leave holes for the |
