Trait shared_child::unix::SharedChildExt [−][src]
pub trait SharedChildExt {
fn send_signal(&self, signal: c_int) -> Result<()>;
}Required methods
fn 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.