Various additions and fixes.

This commit is contained in:
rsc 2003-11-23 18:12:54 +00:00
parent 74f990ad84
commit fd04aacee1
57 changed files with 2176 additions and 159 deletions

26
src/lib9/ffork-pthread.c Normal file
View 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();
}