Function nix::sys::ptrace::cont

source ·
pub fn cont<T: Into<Option<Signal>>>(pid: Pid, sig: T) -> Result<()>
Available on crate feature ptrace only.
Expand description

Restart the stopped tracee process, as with ptrace(PTRACE_CONT, ...)

Continues the execution of the process with PID pid, optionally delivering a signal specified by sig.