Lines Matching defs:syscall
155 /// Stop triggered by the `INTERRUPT` syscall, or a group stop,
166 /// distinguish between normal stops or syscall stops. May not work on
334 /// Continue execution until the next syscall, as with `ptrace(PTRACE_SYSCALL, ...)`
338 pub fn syscall<T: Into<Option<Signal>>>(pid: Pid, sig: T) -> Result<()> {
349 /// Continue execution until the next syscall, as with `ptrace(PTRACE_SYSEMU, ...)`
351 /// In contrast to the `syscall` function, the syscall stopped at will not be executed.
352 /// Thus the the tracee will only be stopped once per syscall,
499 /// Move the stopped tracee process forward by a single step or stop at the next syscall
502 /// Advances the execution by a single step or until the next syscall.
503 /// In case the tracee is stopped at a syscall, the syscall will not be executed.