Function nix::sys::ptrace::sysemu_step
source ยท pub fn sysemu_step<T: Into<Option<Signal>>>(pid: Pid, sig: T) -> Result<()>
Expand description
Move the stopped tracee process forward by a single step or stop at the next syscall
as with ptrace(PTRACE_SYSEMU_SINGLESTEP, ...)
Advances the execution by a single step or until the next syscall.
In case the tracee is stopped at a syscall, the syscall will not be executed.
Optionally, the signal specified by sig
is delivered to the tracee upon continuation.