diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-03-17 08:29:08 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-03-17 08:29:08 +0000 |
commit | 3f165fa5b3b38fa4b321be94a97f06927f636fb1 (patch) | |
tree | d5e2d1045e714823c2e9a3ef912dcafeffcc9ebd /ipsvd | |
parent | 8e2cfec1cdf34068f2378aae9fe8f5ec0f821e21 (diff) | |
download | busybox-w32-3f165fa5b3b38fa4b321be94a97f06927f636fb1.tar.gz busybox-w32-3f165fa5b3b38fa4b321be94a97f06927f636fb1.tar.bz2 busybox-w32-3f165fa5b3b38fa4b321be94a97f06927f636fb1.zip |
libbb: introduce and use sigprocmask_allsigs and sigaction_set.
libbb: rename sig_pause to wait_for_any_sig.
Diffstat (limited to 'ipsvd')
-rw-r--r-- | ipsvd/tcpudp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipsvd/tcpudp.c b/ipsvd/tcpudp.c index 8b4ae88f4..5362af5fd 100644 --- a/ipsvd/tcpudp.c +++ b/ipsvd/tcpudp.c | |||
@@ -290,7 +290,7 @@ int tcpudpsvd_main(int argc, char **argv) | |||
290 | hccp = NULL; | 290 | hccp = NULL; |
291 | 291 | ||
292 | while (cnum >= cmax) | 292 | while (cnum >= cmax) |
293 | sig_pause(); /* wait for any signal (expecting SIGCHLD) */ | 293 | wait_for_any_sig(); /* expecting SIGCHLD */ |
294 | 294 | ||
295 | /* Accept a connection to fd #0 */ | 295 | /* Accept a connection to fd #0 */ |
296 | again1: | 296 | again1: |