process: Add a Windows implementation

This commit is contained in:
Alex Crichton
2019-06-24 16:56:45 -07:00
committed by Ivan Petkov
parent 97508096fa
commit eef655f3b1
3 changed files with 133 additions and 0 deletions
+6
View File
@@ -11,10 +11,16 @@ use futures::{Future, Poll};
use tokio_core::LoopHandle;
#[path = "unix.rs"]
#[cfg(unix)]
mod imp;
#[path = "windows.rs"]
#[cfg(windows)]
mod imp;
pub struct Command {
inner: process::Command,
#[allow(dead_code)]
handle: LoopHandle,
}