Struct shared_child::SharedChild [−][src]
pub struct SharedChild { /* fields omitted */ }
Implementations
Spawn a new SharedChild
from a std::process::Command
.
Wait for the child to exit, blocking the current thread, and return its exit status.
Return the child’s exit status if it has already exited. If the child is
still running, return Ok(None)
.
Send a kill signal to the child. On Unix this sends SIGKILL, and you
should call wait
afterwards to avoid leaving a zombie. If the process
has already been waited on, this returns Ok(())
and does nothing.
Consume the SharedChild
and return the std::process::Child
it
contains.
We never reap the child process except through Child::wait
, so the
child object’s inner state is correct, even if it was waited on while it
was shared.