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_getflags.c
Normal file
7
src/process/posix_spawnattr_getflags.c
Normal file
@ -0,0 +1,7 @@
|
||||
#include <spawn.h>
|
||||
|
||||
int posix_spawnattr_getflags(const posix_spawnattr_t *attr, short *flags)
|
||||
{
|
||||
*flags = attr->__flags;
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user