mirror of
https://github.com/fluencelabs/musl
synced 2025-06-01 17:11:53 +00:00
file actions are not yet implemented, but everything else should be mostly complete and roughly correct.
8 lines
124 B
C
8 lines
124 B
C
#include <spawn.h>
|
|
|
|
int posix_spawnattr_setpgroup(posix_spawnattr_t *attr, pid_t pgrp)
|
|
{
|
|
attr->__pgrp = pgrp;
|
|
return 0;
|
|
}
|