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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __ASM_ARM_PTRACE_H
  2. #define __ASM_ARM_PTRACE_H
  3. #include <asm/proc/ptrace.h>
  4. #ifndef __ASSEMBLY__
  5. #define pc_pointer(v) 
  6. ((v) & ~PCMASK)
  7. #define instruction_pointer(regs) 
  8. (pc_pointer((regs)->ARM_pc))
  9. #ifdef __KERNEL__
  10. #define PTRACE_GETREGS 12
  11. #define PTRACE_SETREGS 13
  12. #define PTRACE_GETFPREGS 14
  13. #define PTRACE_SETFPREGS 15
  14. extern void show_regs(struct pt_regs *);
  15. #define predicate(x) (x & 0xf0000000)
  16. #define PREDICATE_ALWAYS 0xe0000000
  17. #endif
  18. #endif /* __ASSEMBLY__ */
  19. #endif