diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-01 01:18:20 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-01 01:18:20 +0000 |
commit | 2856dab4770e521a87c18b04ae8ebc209a9b95f9 (patch) | |
tree | d4f6495339702c0b6d79816d0bb07ba4b6679ce8 /runit/runsvdir.c | |
parent | f443bffd3c24c4b7fcbc0472c75e747e26c24fef (diff) | |
download | busybox-w32-2856dab4770e521a87c18b04ae8ebc209a9b95f9.tar.gz busybox-w32-2856dab4770e521a87c18b04ae8ebc209a9b95f9.tar.bz2 busybox-w32-2856dab4770e521a87c18b04ae8ebc209a9b95f9.zip |
tcpsvd: new applet
It's a GPL-ed 'clone' of Dan Bernstein's tcpserver.
Author: Gerrit Pape <pape@smarden.org>
http://smarden.sunsite.dk/ipsvd/
size tcpsvd.o
text data bss dec hex filename
2571 4 16 2591 a1f tcpsvd.o
Diffstat (limited to 'runit/runsvdir.c')
-rw-r--r-- | runit/runsvdir.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/runit/runsvdir.c b/runit/runsvdir.c index cce2c5d9c..39929fc49 100644 --- a/runit/runsvdir.c +++ b/runit/runsvdir.c | |||
@@ -97,9 +97,10 @@ static void runsv(int no, const char *name) | |||
97 | prog[0] = (char*)"runsv"; | 97 | prog[0] = (char*)"runsv"; |
98 | prog[1] = (char*)name; | 98 | prog[1] = (char*)name; |
99 | prog[2] = NULL; | 99 | prog[2] = NULL; |
100 | sig_uncatch(SIGHUP); | 100 | if (pgrp) |
101 | sig_uncatch(SIGTERM); | 101 | setsid(); |
102 | if (pgrp) setsid(); | 102 | signal(SIGHUP, SIG_DFL); |
103 | signal(SIGTERM, SIG_DFL); | ||
103 | BB_EXECVP(prog[0], prog); | 104 | BB_EXECVP(prog[0], prog); |
104 | //pathexec_run(*prog, prog, (char* const*)environ); | 105 | //pathexec_run(*prog, prog, (char* const*)environ); |
105 | fatal2_cannot("start runsv ", name); | 106 | fatal2_cannot("start runsv ", name); |