• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #define PTRACE_GETVRREGS	0x12
2 #define PTRACE_SETVRREGS	0x13
3 #define PTRACE_GETEVRREGS	0x14
4 #define PTRACE_SETEVRREGS	0x15
5 #define PTRACE_GETREGS64	0x16
6 #define PTRACE_SETREGS64	0x17
7 #define PTRACE_GET_DEBUGREG	0x19
8 #define PTRACE_SET_DEBUGREG	0x1a
9 #define PTRACE_GETVSRREGS	0x1b
10 #define PTRACE_SETVSRREGS	0x1c
11 #define PTRACE_SYSEMU		0x1d
12 #define PTRACE_SYSEMU_SINGLESTEP	0x1e
13 #define PTRACE_SINGLEBLOCK	0x100
14 
15 #define PT_GETVRREGS PTRACE_GETVRREGS
16 #define PT_SETVRREGS PTRACE_SETVRREGS
17 #define PT_GETEVRREGS PTRACE_GETEVRREGS
18 #define PT_SETEVRREGS PTRACE_SETEVRREGS
19 #define PT_GETREGS64 PTRACE_GETREGS64
20 #define PT_SETREGS64 PTRACE_SETREGS64
21 #define PT_GET_DEBUGREG PTRACE_GET_DEBUGREG
22 #define PT_SET_DEBUGREG PTRACE_SET_DEBUGREG
23 #define PT_GETVSRREGS PTRACE_GETVSRREGS
24 #define PT_SETVSRREGS PTRACE_SETVSRREGS
25 #define PT_STEPBLOCK PTRACE_SINGLEBLOCK
26