pub fn sysemu<T>(pid: Pid, sig: T) -> Result<(), Errno> where
    T: Into<Option<Signal>>, 
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.