mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-27 00:00:12 +02:00
process: Add a Windows implementation
This commit is contained in:
@@ -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,
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user