removed the signal_check libraries

Nobody is using the signal_check library anymore.

This patch also removes the SIGUSR1 handler.
This commit is contained in:
Max Kellermann
2009-01-01 18:51:38 +01:00
parent 2f71b647f4
commit 46aedbae09
4 changed files with 0 additions and 87 deletions

View File

@@ -18,7 +18,6 @@
*/
#include "sig_handlers.h"
#include "signal_check.h"
#include "log.h"
#include "main.h"
#include "event_pipe.h"
@@ -69,6 +68,4 @@ void initSigHandlers(void)
event_pipe_register(PIPE_EVENT_RELOAD, handle_reload_event);
sa.sa_handler = reload_signal_handler;
x_sigaction(SIGHUP, &sa);
signal_handle(SIGUSR1);
}