pub fn sysemu<T: Into<Option<Signal>>>(pid: Pid, sig: T) -> Result<()>
Expand description
Continue execution until the next syscall, as with ptrace(PTRACE_SYSEMU, ...)
In contrast to the syscall
function, the syscall stopped at will not be executed.
Thus the the tracee will only be stopped once per syscall,
optionally delivering a signal specified by sig
.