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_socket.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_socket.c')
-rw-r--r-- | src/libstddjb/child_spawn1_socket.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/libstddjb/child_spawn1_socket.c b/src/libstddjb/child_spawn1_socket.c new file mode 100644 index 0000000..46c900f --- /dev/null +++ b/src/libstddjb/child_spawn1_socket.c @@ -0,0 +1,16 @@ +/* ISC license. */ + +#include <skalibs/webipc.h> +#include <skalibs/djbunix.h> +#include "djbunix-internal.h" + +pid_t child_spawn1_socket (char const *prog, char const *const *argv, char const *const *envp, int *fd) +{ + pid_t pid ; + int p[2] ; + if (ipc_pair_b(p) < 0) return 0 ; + pid = child_spawn1_internal(prog, argv, envp, p, 1) ; + if (!pid) return 0 ; + *fd = p[0] ; + return pid ; +} |