diff options
author | Russ Cox <rsc@swtch.com> | 2012-10-22 12:32:09 -0400 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2012-10-22 12:32:09 -0400 |
commit | 9e4b56e7645e08311590355824863ecf9f334f0c (patch) | |
tree | e075835acb77327b3f6bedacb9d265a443065714 /include | |
parent | 81c2c5e775d83896f25981cf4c4e486c5cc91180 (diff) | |
download | plan9port-9e4b56e7645e08311590355824863ecf9f334f0c.tar.gz plan9port-9e4b56e7645e08311590355824863ecf9f334f0c.tar.bz2 plan9port-9e4b56e7645e08311590355824863ecf9f334f0c.zip |
libthread: add threadspawnd
R=rsc
http://codereview.appspot.com/6742064
Diffstat (limited to 'include')
-rw-r--r-- | include/thread.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/thread.h b/include/thread.h index 43c35bf3..c01cd516 100644 --- a/include/thread.h +++ b/include/thread.h @@ -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); |