X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=ossec-hids.git;a=blobdiff_plain;f=src%2Fshared%2Fsig_op.c;h=4ab56418fe27e588fa205f090b74035a419bea35;hp=f31a6546e6cdbaf58a1ea2c336e8452dcca87a64;hb=3f728675941dc69d4e544d3a880a56240a6e394a;hpb=927951d1c1ad45ba9e7325f07d996154a91c911b diff --git a/src/shared/sig_op.c b/src/shared/sig_op.c old mode 100755 new mode 100644 index f31a654..4ab5641 --- a/src/shared/sig_op.c +++ b/src/shared/sig_op.c @@ -1,6 +1,3 @@ -/* @(#) $Id: ./src/shared/sig_op.c, 2011/09/08 dcid Exp $ - */ - /* Copyright (C) 2009 Trend Micro Inc. * All right reserved. * @@ -10,27 +7,26 @@ * Foundation */ - -/* Functions to handle signal manipulation - */ +/* Functions to handle signal manipulation */ #ifndef WIN32 #include #include #include +#include #include "sig_op.h" #include "file_op.h" #include "debug_op.h" - #include "error_messages/error_messages.h" -char *pidfile = NULL; +static const char *pidfile = NULL; + -void HandleSIG() +void HandleSIG(int sig) { - merror(SIGNAL_RECV, pidfile); + merror(SIGNAL_RECV, pidfile, sig, strsignal(sig)); DeletePID(pidfile); @@ -39,15 +35,13 @@ void HandleSIG() /* To avoid client-server communication problems */ -void HandleSIGPIPE() +void HandleSIGPIPE(__attribute__((unused)) int sig) { return; } -void StartSIG(char *process_name) +void StartSIG(const char *process_name) { - /* Signal Manipulation - go to HandleSIG() */ pidfile = process_name; signal(SIGHUP, SIG_IGN); @@ -58,7 +52,7 @@ void StartSIG(char *process_name) signal(SIGPIPE, HandleSIGPIPE); } -void StartSIG2(char *process_name, void (*func)(int)) +void StartSIG2(const char *process_name, void (*func)(int)) { pidfile = process_name; @@ -70,5 +64,5 @@ void StartSIG2(char *process_name, void (*func)(int)) signal(SIGPIPE, HandleSIGPIPE); } -#endif -/* EOF */ +#endif /* !WIN32 */ +