plan9port/src/libthread/getpid.c
rsc a995e477ff Various tweaks to make things run on Mac OS.
The main change is the use of pthread to implement ffork.
2003-10-01 02:50:57 +00:00

8 lines
103 B
C

#include "threadimpl.h"
extern int getfforkid(void);
int
_threadgetpid(void)
{
return getfforkid();
}