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/svlogd.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/svlogd.c')
-rw-r--r-- | runit/svlogd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runit/svlogd.c b/runit/svlogd.c index fb834a403..1d6625561 100644 --- a/runit/svlogd.c +++ b/runit/svlogd.c | |||
@@ -143,9 +143,9 @@ static unsigned processorstart(struct logdir *ld) | |||
143 | int fd; | 143 | int fd; |
144 | 144 | ||
145 | /* child */ | 145 | /* child */ |
146 | sig_uncatch(SIGTERM); | 146 | signal(SIGTERM, SIG_DFL); |
147 | sig_uncatch(SIGALRM); | 147 | signal(SIGALRM, SIG_DFL); |
148 | sig_uncatch(SIGHUP); | 148 | signal(SIGHUP, SIG_DFL); |
149 | sig_unblock(SIGTERM); | 149 | sig_unblock(SIGTERM); |
150 | sig_unblock(SIGALRM); | 150 | sig_unblock(SIGALRM); |
151 | sig_unblock(SIGHUP); | 151 | sig_unblock(SIGHUP); |