aboutsummaryrefslogtreecommitdiff
path: root/src/sig_handlers.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-01 18:51:38 +0100
committerMax Kellermann <max@duempel.org>2009-01-01 18:51:38 +0100
commit46aedbae096a2702fa8879f3632eb60c910dc866 (patch)
tree488bd0cb1db3177d94e6554a733f2168851c1cd9 /src/sig_handlers.c
parent2f71b647f48592ced0811ec66907068a3e236d6a (diff)
removed the signal_check libraries
Nobody is using the signal_check library anymore. This patch also removes the SIGUSR1 handler.
Diffstat (limited to 'src/sig_handlers.c')
-rw-r--r--src/sig_handlers.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/sig_handlers.c b/src/sig_handlers.c
index 66010720..7713cb21 100644
--- a/src/sig_handlers.c
+++ b/src/sig_handlers.c
@@ -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);
}