diff options
author | rsc <devnull@localhost> | 2005-02-11 00:01:49 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2005-02-11 00:01:49 +0000 |
commit | 281c90a5be6b1ab2280ffa23885fe41e7af80bce (patch) | |
tree | c26a67c58f869a3a6821f1a0ae980af03d4eb430 /include | |
parent | ce2a378d46c0bcd00ec08b9bc4ad861c8aa28a2f (diff) | |
download | plan9port-281c90a5be6b1ab2280ffa23885fe41e7af80bce.tar.gz plan9port-281c90a5be6b1ab2280ffa23885fe41e7af80bce.tar.bz2 plan9port-281c90a5be6b1ab2280ffa23885fe41e7af80bce.zip |
more pthread
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) } |