plan9port

[fork] Plan 9 from user space
git clone git://src.adamsgaard.dk/plan9port # fast
git clone https://src.adamsgaard.dk/plan9port.git # slow
Log | Files | Refs | README | LICENSE Back to index

commit 3fd66761f7d3b1b93e9d2f819b7edbdb13152c75
parent 7722ad0044128996c43af1e5bfe34e6fc7924007
Author: rsc <devnull@localhost>
Date:   Sun, 12 Feb 2006 16:48:11 +0000

add procwait

Diffstat:
Minclude/thread.h | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/include/thread.h b/include/thread.h @@ -178,6 +178,11 @@ int threadspawn(int[3], char*, char*[]); int threadspawnl(int[3], char*, ...); Channel* threadwaitchan(void); +/* + * alternate interface to threadwaitchan - don't use both! + */ +Waitmsg* procwait(int pid); + #if defined(__cplusplus) } #endif