pub fn syscall<T: Into<Option<Signal>>>(pid: Pid, sig: T) -> Result<()>
Expand description
Continue execution until the next syscall, as with ptrace(PTRACE_SYSCALL, ...)
Arranges for the tracee to be stopped at the next entry to or exit from a system call,
optionally delivering a signal specified by sig
.