1 #ifndef __ASM_ARM_PTRACE_H
2 #define __ASM_ARM_PTRACE_H
4 #define PTRACE_GETREGS 12
5 #define PTRACE_SETREGS 13
6 #define PTRACE_GETFPREGS 14
7 #define PTRACE_SETFPREGS 15
9 #define PTRACE_SETOPTIONS 21
11 /* options set using PTRACE_SETOPTIONS */
12 #define PTRACE_O_TRACESYSGOOD 0x00000001
14 #include <asm/proc/ptrace.h>
17 #define pc_pointer(v) \
20 #define instruction_pointer(regs) \
21 (pc_pointer((regs)->ARM_pc))
24 extern void show_regs(struct pt_regs *);
26 #define predicate(x) (x & 0xf0000000)
27 #define PREDICATE_ALWAYS 0xe0000000
31 #endif /* __ASSEMBLY__ */