From: Michel Stam Date: Mon, 13 Oct 2014 14:14:27 +0000 (+0200) Subject: uloop: Remove uloop_cancelled variable, it is not used anywhere X-Git-Url: http://git.archive.openwrt.org/?p=project%2Flibubox.git;a=commitdiff_plain;h=213122a0830e1ba3a05013b5cb5d17c49af13282 uloop: Remove uloop_cancelled variable, it is not used anywhere Signed-off-by: Michel Stam --- diff --git a/uloop.c b/uloop.c index c3d206a..9fedcce 100644 --- a/uloop.c +++ b/uloop.c @@ -58,7 +58,6 @@ static struct list_head processes = LIST_HEAD_INIT(processes); static int poll_fd = -1; bool uloop_cancelled = false; -bool uloop_handle_sigchld = true; static bool do_sigchld = false; static struct uloop_fd_event cur_fds[ULOOP_MAX_EVENTS]; @@ -575,9 +574,6 @@ static void uloop_setup_signals(bool add) sigaction(SIGINT, &s, &old_sigint); - if (!uloop_handle_sigchld) - return; - if (add) s.sa_handler = uloop_sigchld; else