aboutsummaryrefslogtreecommitdiff
path: root/src/libthread/pthread.c
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2004-12-27 17:19:44 +0000
committerrsc <devnull@localhost>2004-12-27 17:19:44 +0000
commite127e40bb1327662a05f5b70dd1bbca5c69b042c (patch)
tree174086bd28c59819eff30a2bd1986e12a5ecb5ca /src/libthread/pthread.c
parente8a7b9699925f3f650593d07eb382155e9374ae6 (diff)
downloadplan9port-e127e40bb1327662a05f5b70dd1bbca5c69b042c.tar.gz
plan9port-e127e40bb1327662a05f5b70dd1bbca5c69b042c.tar.bz2
plan9port-e127e40bb1327662a05f5b70dd1bbca5c69b042c.zip
shuffle to allow use of execchan in non-pthreads impls
Diffstat (limited to 'src/libthread/pthread.c')
-rw-r--r--src/libthread/pthread.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libthread/pthread.c b/src/libthread/pthread.c
index 2ddd8c72..e1fed2bf 100644
--- a/src/libthread/pthread.c
+++ b/src/libthread/pthread.c
@@ -130,3 +130,9 @@ _pthreadinit(void)
pthread_key_create(&prockey, 0);
}
+int
+_runthreadspawn(int *fd, char *cmd, char **argv)
+{
+ return _threadspawn(fd, cmd, argv);
+}
+