123456789101112131415161718192021222324252627 |
- #ifndef _ASM_PTRACE_H
- #define _ASM_PTRACE_H
- #include <uapi/asm/ptrace.h>
- #define user_mode(regs) (((regs)->epsw & EPSW_nSL) == EPSW_nSL)
- #define instruction_pointer(regs) ((regs)->pc)
- #define user_stack_pointer(regs) ((regs)->sp)
- #define current_pt_regs() current_frame()
- #define arch_has_single_step() (1)
- #define profile_pc(regs) ((regs)->pc)
- #endif
|