Cutlery
A cross-platform (Unix and Windows) Rust library for process forking.
Getting started
use ;
use fork_fn;
// create a pipe to communicate with the
// child process
let = pipe?;
let child = fork_fn?;
// execution continues in the parent process
// read the message in the parent process
let mut buf = ;
r.read_exact?;
assert_eq!;
// retrieve the exit status of the child process
let status = child.wait?;
assert_eq!;