diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2024-04-30 19:09:43 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2024-04-30 19:09:43 +0000 |
commit | 02926ee3447b1ea0d04b53b8fcb08d8b1a4deec5 (patch) | |
tree | f0cffb716e9ba61382795b460203df506e13ed4b /src/libenvexec/child_spawn1_socket.c | |
parent | 944a9d260a41b30f32730ccb12b3f5dafb507b7d (diff) | |
download | skalibs-02926ee3447b1ea0d04b53b8fcb08d8b1a4deec5.tar.xz |
Add mspawn functions to cspawn.h; move everything to libenvexec
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/libenvexec/child_spawn1_socket.c')
-rw-r--r-- | src/libenvexec/child_spawn1_socket.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/libenvexec/child_spawn1_socket.c b/src/libenvexec/child_spawn1_socket.c new file mode 100644 index 0000000..684842e --- /dev/null +++ b/src/libenvexec/child_spawn1_socket.c @@ -0,0 +1,16 @@ +/* ISC license. */ + +#include <skalibs/socket.h> +#include <skalibs/cspawn.h> +#include "cspawn-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, 3) ; + if (!pid) return 0 ; + *fd = p[0] ; + return pid ; +} |