mirror of
https://github.com/fluencelabs/musl
synced 2025-06-26 05:02:02 +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_setflags.c
Normal file
7
src/process/posix_spawnattr_setflags.c
Normal file
@ -0,0 +1,7 @@
|
||||
#include <spawn.h>
|
||||
|
||||
int posix_spawnattr_setflags(posix_spawnattr_t *attr, short flags)
|
||||
{
|
||||
attr->__flags = flags;
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user