ptrace.h 897 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Copyright (C) 1999, 2000 Niibe Yutaka
  3. */
  4. #ifndef _UAPI__ASM_SH_PTRACE_H
  5. #define _UAPI__ASM_SH_PTRACE_H
  6. #define PTRACE_GETREGS 12 /* General registers */
  7. #define PTRACE_SETREGS 13
  8. #define PTRACE_GETFPREGS 14 /* FPU registers */
  9. #define PTRACE_SETFPREGS 15
  10. #define PTRACE_GETFDPIC 31 /* get the ELF fdpic loadmap address */
  11. #define PTRACE_GETFDPIC_EXEC 0 /* [addr] request the executable loadmap */
  12. #define PTRACE_GETFDPIC_INTERP 1 /* [addr] request the interpreter loadmap */
  13. #define PTRACE_GETDSPREGS 55 /* DSP registers */
  14. #define PTRACE_SETDSPREGS 56
  15. #define PT_TEXT_END_ADDR 240
  16. #define PT_TEXT_ADDR 244 /* &(struct user)->start_code */
  17. #define PT_DATA_ADDR 248 /* &(struct user)->start_data */
  18. #define PT_TEXT_LEN 252
  19. #if defined(__SH5__) || defined(CONFIG_CPU_SH5)
  20. #include <asm/ptrace_64.h>
  21. #else
  22. #include <asm/ptrace_32.h>
  23. #endif
  24. #endif /* _UAPI__ASM_SH_PTRACE_H */