ptrace.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_PTRACE_H
  2. #define _LINUX_PTRACE_H
  3. /* ptrace.h */
  4. /* structs and defines to help the user use the ptrace system call. */
  5. /* has the defines to get at the registers. */
  6. #define PTRACE_TRACEME    0
  7. #define PTRACE_PEEKTEXT    1
  8. #define PTRACE_PEEKDATA    2
  9. #define PTRACE_PEEKUSR    3
  10. #define PTRACE_POKETEXT    4
  11. #define PTRACE_POKEDATA    5
  12. #define PTRACE_POKEUSR    6
  13. #define PTRACE_CONT    7
  14. #define PTRACE_KILL    8
  15. #define PTRACE_SINGLESTEP    9
  16. #define PTRACE_ATTACH 0x10
  17. #define PTRACE_DETACH 0x11
  18. #define PTRACE_SYSCALL   24
  19. #include <asm/ptrace.h>
  20. #endif