pub trait SharedChildExt {
// Required method
fn send_signal(&self, signal: c_int) -> Result<()>;
}
Required Methods§
Sourcefn send_signal(&self, signal: c_int) -> Result<()>
fn send_signal(&self, signal: c_int) -> Result<()>
Send a signal to the child process with libc::kill
. If the process
has already been waited on, this returns Ok(())
and does nothing.