diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2014-12-18 19:06:06 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2014-12-18 19:06:06 +0000 |
commit | 5f76ed9108c5c48850cf339096527c4d53f0bc12 (patch) | |
tree | 6ccf306c97ccea0021bfea2f70c3654501953b45 /src/libstddjb/child_spawn1_pipe.c | |
parent | b19b3e0682d6e224c12b35308772114fe27372fe (diff) | |
download | skalibs-5f76ed9108c5c48850cf339096527c4d53f0bc12.tar.xz |
Separate socket from pipe in child_spawn. Less code in skaclient!
Diffstat (limited to 'src/libstddjb/child_spawn1_pipe.c')
-rw-r--r-- | src/libstddjb/child_spawn1_pipe.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/libstddjb/child_spawn1_pipe.c b/src/libstddjb/child_spawn1_pipe.c new file mode 100644 index 0000000..a436f6e --- /dev/null +++ b/src/libstddjb/child_spawn1_pipe.c @@ -0,0 +1,16 @@ +/* ISC license. */ + +#include <unistd.h> +#include <skalibs/djbunix.h> +#include "djbunix-internal.h" + +pid_t child_spawn1_pipe (char const *prog, char const *const *argv, char const *const *envp, int *fd, int to) +{ + pid_t pid ; + int p[2] ; + if (pipe(p) < 0) return 0 ; + pid = child_spawn1_internal(prog, argv, envp, p, !!to) ; + if (!pid) return 0 ; + *fd = p[!to] ; + return pid ; +} |