summaryrefslogtreecommitdiff
path: root/src/process/posix_spawnp.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_spawnp.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_spawnp.c')
-rw-r--r--src/process/posix_spawnp.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/process/posix_spawnp.c b/src/process/posix_spawnp.c
new file mode 100644
index 00000000..7434bb69
--- /dev/null
+++ b/src/process/posix_spawnp.c
@@ -0,0 +1,14 @@
+#include <spawn.h>
+#include <unistd.h>
+
+int __posix_spawnx(pid_t *, const char *,
+ int (*)(const char *, char *const *),
+ const posix_spawn_file_actions_t *,
+ const posix_spawnattr_t *, char **, char **);
+
+int posix_spawnp(pid_t *res, const char *file,
+ const posix_spawn_file_actions_t *fa,
+ const posix_spawnattr_t *attr, char **argv, char **envp)
+{
+ return __posix_spawnx(res, file, execvp, fa, attr, argv, envp);
+}