summaryrefslogtreecommitdiff
path: root/src/process/posix_spawnattr_setflags.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-05-28 18:36:30 -0400
committerRich Felker <dalias@aerifal.cx>2011-05-28 18:36:30 -0400
commitc97f0d998cae23472ea30564663a8612dcfb6f83 (patch)
tree3f18a824e04b327d6e0ec606934fdd5f7c863f87 /src/process/posix_spawnattr_setflags.c
parent3a17f757a80816961cd1fbf4664a5cbb02563b2d (diff)
downloadmusl-c97f0d998cae23472ea30564663a8612dcfb6f83.tar.gz
initial implementation of posix_spawn
file actions are not yet implemented, but everything else should be mostly complete and roughly correct.
Diffstat (limited to 'src/process/posix_spawnattr_setflags.c')
-rw-r--r--src/process/posix_spawnattr_setflags.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/process/posix_spawnattr_setflags.c b/src/process/posix_spawnattr_setflags.c
new file mode 100644
index 00000000..f750c040
--- /dev/null
+++ b/src/process/posix_spawnattr_setflags.c
@@ -0,0 +1,7 @@
+#include <spawn.h>
+
+int posix_spawnattr_setflags(posix_spawnattr_t *attr, short flags)
+{
+ attr->__flags = flags;
+ return 0;
+}