More Darwin.
This commit is contained in:
parent
a995e477ff
commit
a46395ecf9
10 changed files with 311 additions and 246 deletions
26
src/lib9/ffork-Darwin.c
Normal file
26
src/lib9/ffork-Darwin.c
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
#include <lib9.h>
|
||||
#include <pthread.h>
|
||||
|
||||
extern int __isthreaded;
|
||||
int
|
||||
ffork(int flags, void(*fn)(void*), void *arg)
|
||||
{
|
||||
void *p;
|
||||
pthread_t tid;
|
||||
|
||||
if(flags != (RFMEM|RFNOWAIT)){
|
||||
werrstr("ffork unsupported");
|
||||
return -1;
|
||||
}
|
||||
|
||||
if(pthread_create(&tid, NULL, (void*(*)(void*))fn, arg) < 0)
|
||||
return -1;
|
||||
return (int)tid;
|
||||
}
|
||||
|
||||
int
|
||||
getfforkid(void)
|
||||
{
|
||||
return (int)pthread_self();
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue