Function nix::sys::ptrace::sysemu
pub fn sysemu<T: Into<Option<Signal>>>(pid: Pid, sig: T) -> Result<()>
The portability is definied by:
#[cfg(all(target_os = "linux", target_env = "gnu",
any(target_arch = "x86", target_arch = "x86_64")))]
Documentation
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
.