ptrace.h 342 B

1234567891011121314151617181920
  1. #ifndef SYS_PTRACE_H
  2. #define SYS_PTRACE_H
  3. #if __cplusplus
  4. extern "C" {
  5. #endif
  6. struct pt_regs;
  7. void ptrace_dump_regs( struct pt_regs *p );
  8. void ptrace_stackdump_from( const int *frame_ptr );
  9. void ptrace_stackdump_regs( struct pt_regs *p );
  10. void ptrace_stackdump_here( void );
  11. #if __cplusplus
  12. }
  13. #endif
  14. #endif /* SYS_PTRACE_H */