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/runsv.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/runsv.c')
-rw-r--r-- | runit/runsv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runit/runsv.c b/runit/runsv.c index 018456847..61eb02e64 100644 --- a/runit/runsv.c +++ b/runit/runsv.c | |||
@@ -323,11 +323,11 @@ static void startservice(struct svdir *s) | |||
323 | close(logpipe[0]); | 323 | close(logpipe[0]); |
324 | } | 324 | } |
325 | } | 325 | } |
326 | sig_uncatch(SIGCHLD); | 326 | signal(SIGCHLD, SIG_DFL); |
327 | signal(SIGTERM, SIG_DFL); | ||
327 | sig_unblock(SIGCHLD); | 328 | sig_unblock(SIGCHLD); |
328 | sig_uncatch(SIGTERM); | ||
329 | sig_unblock(SIGTERM); | 329 | sig_unblock(SIGTERM); |
330 | execve(*run, run, environ); | 330 | execvp(*run, run); |
331 | fatal2_cannot(s->islog ? "start log/" : "start ", *run); | 331 | fatal2_cannot(s->islog ? "start log/" : "start ", *run); |
332 | } | 332 | } |
333 | if (s->state != S_FINISH) { | 333 | if (s->state != S_FINISH) { |