initial implementation of posix_spawn

file actions are not yet implemented, but everything else should be
mostly complete and roughly correct.
This commit is contained in:
Rich Felker
2011-05-28 18:36:30 -04:00
parent 3a17f757a8
commit c97f0d998c
13 changed files with 218 additions and 0 deletions

View File

@ -0,0 +1,7 @@
#include <spawn.h>
int posix_spawnattr_setpgroup(posix_spawnattr_t *attr, pid_t pgrp)
{
attr->__pgrp = pgrp;
return 0;
}