HomeSort by relevance Sort by last modified time
    Searched refs:get_regs_error (Results 1 - 2 of 2) sorted by null

  /external/strace/linux/x86_64/
getregs_old.c 9 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &x86_64_regs);
10 if (get_regs_error)
  /external/strace/
syscall.c 736 static long get_regs_error; variable
741 get_regs_error = -1;
861 res = (get_regs_error ? -1 : get_syscall_result(tcp));
1159 if (get_regs_error) {
1201 get_regs_error = get_regset(pid);
1204 if (get_regs_error >= 0) {
1215 get_regs_error = get_regset(pid);
1220 get_regs_error = ptrace(PTRACE_GETREGS, pid, (char *)&ARCH_REGS_FOR_GETREGS, 0);
1225 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &ARCH_REGS_FOR_GETREGS);
1226 if (get_regs_error && errno == EIO)
    [all...]

Completed in 45 milliseconds