Browse Source

Don't bother sending the listener the shutdown message since the signal handler will kill off the main thread

master
Con Kolivas 11 years ago
parent
commit
923a4abe59
  1. 3
      src/ckpool.c

3
src/ckpool.c

@ -226,9 +226,6 @@ static void sighandler(int sig)
pthread_cancel(global_ckp->pth_watchdog); pthread_cancel(global_ckp->pth_watchdog);
join_pthread(global_ckp->pth_watchdog); join_pthread(global_ckp->pth_watchdog);
/* First attempt, send a shutdown message */
send_proc(&global_ckp->main, "shutdown");
for (i = 0; i < global_ckp->proc_instances; i++) for (i = 0; i < global_ckp->proc_instances; i++)
send_proc(global_ckp->children[i], "shutdown"); send_proc(global_ckp->children[i], "shutdown");

Loading…
Cancel
Save