summaryrefslogtreecommitdiff
path: root/src/libs6/s6_ucspiserver_spawn.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2023-09-12 04:11:07 +0000
committerLaurent Bercot <ska@appnovation.com>2023-09-12 04:11:07 +0000
commitfe3e7804a79f3e9e953bcd51f36f77787cc0ba11 (patch)
tree0f9872005271d5ef3b2a0e327ce8f7d733f69c7e /src/libs6/s6_ucspiserver_spawn.c
parent46fa8813a874a2372395a844c717293fd6edde1d (diff)
downloads6-fe3e7804a79f3e9e953bcd51f36f77787cc0ba11.tar.xz
Remove s6_ucspiserver_spawn
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/libs6/s6_ucspiserver_spawn.c')
-rw-r--r--src/libs6/s6_ucspiserver_spawn.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/libs6/s6_ucspiserver_spawn.c b/src/libs6/s6_ucspiserver_spawn.c
deleted file mode 100644
index 23f102d..0000000
--- a/src/libs6/s6_ucspiserver_spawn.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/* ISC license. */
-
-#include <skalibs/env.h>
-#include <skalibs/cspawn.h>
-
-#include <s6/ucspiserver.h>
-
-pid_t s6_ucspiserver_spawn (int fd, char const *const *argv, char const *const *envp, size_t envlen, char const *modifs, size_t modiflen, size_t modifn)
-{
- cspawn_fileaction fa[2] =
- {
- [0] = { .type = CSPAWN_FA_MOVE, .x = { .fd2 = { [0] = 0, [1] = fd } } },
- [1] = { .type = CSPAWN_FA_COPY, .x = { .fd2 = { [0] = 1, [1] = 0 } } }
- } ;
- char const *newenvp[envlen + modifn + 1] ;
- env_mergen(newenvp, envlen + modifn + 1, envp, envlen, modifs, modiflen, modifn) ;
- return cspawn(argv[0], argv, newenvp, CSPAWN_FLAGS_SELFPIPE_FINISH, fa, 2) ;
-}