diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-05-28 23:30:47 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-05-28 23:30:47 -0400 |
commit | a0ae0b09368e6dbfa82860187dcd6fdf86d86fee (patch) | |
tree | 555e49882b42e32a6b38b51020a3d37a7f42e018 /src/process/posix_spawn_file_actions_addopen.c | |
parent | d6c0c9784615ddb316ace52f3a9e2f025214ba2a (diff) | |
download | musl-a0ae0b09368e6dbfa82860187dcd6fdf86d86fee.tar.gz musl-a0ae0b09368e6dbfa82860187dcd6fdf86d86fee.tar.bz2 musl-a0ae0b09368e6dbfa82860187dcd6fdf86d86fee.tar.xz musl-a0ae0b09368e6dbfa82860187dcd6fdf86d86fee.zip |
add file actions support to posix_spawn
Diffstat (limited to 'src/process/posix_spawn_file_actions_addopen.c')
-rw-r--r-- | src/process/posix_spawn_file_actions_addopen.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/process/posix_spawn_file_actions_addopen.c b/src/process/posix_spawn_file_actions_addopen.c new file mode 100644 index 00000000..5e2c86d9 --- /dev/null +++ b/src/process/posix_spawn_file_actions_addopen.c @@ -0,0 +1,19 @@ +#include <spawn.h> +#include <stdlib.h> +#include <string.h> +#include <errno.h> +#include "fdop.h" + +int posix_spawn_file_actions_addopen(posix_spawn_file_actions_t *fa, int fd, const char *path, int flags, mode_t mode) +{ + struct fdop *op = malloc(sizeof *op + strlen(path) + 1); + if (!op) return ENOMEM; + op->cmd = FDOP_OPEN; + op->fd = fd; + op->oflag = flags; + op->mode = mode; + strcpy(op->path, path); + op->next = fa->__actions; + fa->__actions = op; + return 0; +} |