uloop: Remove uloop_cancelled variable, it is not used anywhere
Signed-off-by: Michel Stam <m.stam@fugro.nl>
This commit is contained in:
parent
bae6bd19f3
commit
213122a083
1 changed files with 0 additions and 4 deletions
4
uloop.c
4
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
|
||||
|
|
Loading…
Reference in a new issue