shared_child 1.0.0

a library for using child processes from multiple threads
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(unix)]
#[path = "unix.rs"]
mod sys;

#[cfg(windows)]
#[path = "windows.rs"]
mod sys;

pub use self::sys::*;