ptrace.h 348 B

1234567891011121314151617
  1. #ifndef _CRIS_PTRACE_H
  2. #define _CRIS_PTRACE_H
  3. #include <arch/ptrace.h>
  4. #ifdef __KERNEL__
  5. /* Arbitrarily choose the same ptrace numbers as used by the Sparc code. */
  6. #define PTRACE_GETREGS 12
  7. #define PTRACE_SETREGS 13
  8. #define profile_pc(regs) instruction_pointer(regs)
  9. #endif /* __KERNEL__ */
  10. #endif /* _CRIS_PTRACE_H */