Home
last modified time | relevance | path

Searched refs:PT_FIRSTMACH (Results 1 – 5 of 5) sorted by relevance

/f-stack/freebsd/x86/include/
H A Dptrace.h46 #define PT_GETXMMREGS (PT_FIRSTMACH + 0)
47 #define PT_SETXMMREGS (PT_FIRSTMACH + 1)
50 #define PT_GETXSTATE_OLD (PT_FIRSTMACH + 2)
51 #define PT_SETXSTATE_OLD (PT_FIRSTMACH + 3)
53 #define PT_GETXSTATE_INFO (PT_FIRSTMACH + 4)
54 #define PT_GETXSTATE (PT_FIRSTMACH + 5)
55 #define PT_SETXSTATE (PT_FIRSTMACH + 6)
56 #define PT_GETFSBASE (PT_FIRSTMACH + 7)
57 #define PT_SETFSBASE (PT_FIRSTMACH + 8)
58 #define PT_GETGSBASE (PT_FIRSTMACH + 9)
[all …]
/f-stack/freebsd/arm/include/
H A Dptrace.h19 #define PT_GETVFPREGS (PT_FIRSTMACH + 0)
20 #define PT_SETVFPREGS (PT_FIRSTMACH + 1)
/f-stack/freebsd/amd64/amd64/
H A Dptrace_machdep.c159 #define PT_I386_GETXMMREGS (PT_FIRSTMACH + 0)
160 #define PT_I386_SETXMMREGS (PT_FIRSTMACH + 1)
239 if (req == PT_FIRSTMACH + 0) in cpu_ptrace()
241 if (req == PT_FIRSTMACH + 1) in cpu_ptrace()
/f-stack/freebsd/sys/
H A Dptrace.h87 #define PT_FIRSTMACH 64 /* for machine-specific requests */ macro
/f-stack/freebsd/kern/
H A Dsys_process.c1305 if (req >= PT_FIRSTMACH) { in kern_ptrace()