shuffle to allow use of execchan in non-pthreads impls

This commit is contained in:
rsc 2004-12-27 17:19:44 +00:00
parent e8a7b96999
commit e127e40bb1
3 changed files with 43 additions and 6 deletions

View file

@ -130,3 +130,9 @@ _pthreadinit(void)
pthread_key_create(&prockey, 0);
}
int
_runthreadspawn(int *fd, char *cmd, char **argv)
{
return _threadspawn(fd, cmd, argv);
}