libthread: add threadspawnd

R=rsc
http://codereview.appspot.com/6742064
This commit is contained in:
Russ Cox 2012-10-22 12:32:09 -04:00
parent 81c2c5e775
commit 9e4b56e764
4 changed files with 28 additions and 6 deletions

View file

@ -175,6 +175,7 @@ long iowrite(Ioproc *io, int fd, void *a, long n);
void threadexec(Channel*, int[3], char*, char *[]);
void threadexecl(Channel*, int[3], char*, ...);
int threadspawn(int[3], char*, char*[]);
int threadspawnd(int[3], char*, char*[], char*);
int threadspawnl(int[3], char*, ...);
Channel* threadwaitchan(void);