diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/mach.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/mach.h b/include/mach.h index 7fbffc45..a91468a2 100644 --- a/include/mach.h +++ b/include/mach.h @@ -540,6 +540,13 @@ struct ps_prochandle int pid; }; +int sys_ps_lgetregs(struct ps_prochandle*, uint, void*); +int sys_ps_lgetfpregs(struct ps_prochandle*, uint, void*); +int sys_ps_lsetregs(struct ps_prochandle*, uint, void*); +int sys_ps_lsetfpregs(struct ps_prochandle*, uint, void*); +Regs* threadregs(uint); +int pthreaddbinit(void); + extern int machdebug; #if defined(__cplusplus) } |