[go: up one dir, main page]

Function nix::sys::ptrace::sysemu

source ·
pub fn sysemu<T: Into<Option<Signal>>>(pid: Pid, sig: T) -> Result<()>
Available on crate feature ptrace only.
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.