mirror of
https://github.com/fluencelabs/musl
synced 2025-06-25 20:51:53 +00:00
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:
7
src/process/posix_spawnattr_setpgroup.c
Normal file
7
src/process/posix_spawnattr_setpgroup.c
Normal file
@ -0,0 +1,7 @@
|
||||
#include <spawn.h>
|
||||
|
||||
int posix_spawnattr_setpgroup(posix_spawnattr_t *attr, pid_t pgrp)
|
||||
{
|
||||
attr->__pgrp = pgrp;
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user