diff options
author | Denis Vlasenko | 2008-03-17 08:29:08 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-03-17 08:29:08 +0000 |
commit | 3f165fa5b3b38fa4b321be94a97f06927f636fb1 (patch) | |
tree | d5e2d1045e714823c2e9a3ef912dcafeffcc9ebd /ipsvd | |
parent | 8e2cfec1cdf34068f2378aae9fe8f5ec0f821e21 (diff) | |
download | busybox-3f165fa5b3b38fa4b321be94a97f06927f636fb1.zip busybox-3f165fa5b3b38fa4b321be94a97f06927f636fb1.tar.gz |
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 8b4ae88..5362af5 100644 --- a/ipsvd/tcpudp.c +++ b/ipsvd/tcpudp.c @@ -290,7 +290,7 @@ int tcpudpsvd_main(int argc, char **argv) hccp = NULL; while (cnum >= cmax) - sig_pause(); /* wait for any signal (expecting SIGCHLD) */ + wait_for_any_sig(); /* expecting SIGCHLD */ /* Accept a connection to fd #0 */ again1: |