From 613d1891c0350e09f8aa46254fb3d708d24becfa Mon Sep 17 00:00:00 2001 From: dockes Date: Mon, 12 Oct 2009 16:27:11 +0000 Subject: [PATCH] also block USR1 USR2 --- src/common/rclinit.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/rclinit.cpp b/src/common/rclinit.cpp index 3a0534a6..c3eb7f01 100644 --- a/src/common/rclinit.cpp +++ b/src/common/rclinit.cpp @@ -29,7 +29,8 @@ static char rcsid[] = "@(#$Id: rclinit.cpp,v 1.11 2007-12-13 06:58:21 dockes Exp #include "rclinit.h" #include "pathut.h" -static const int catchedSigs[] = {SIGHUP, SIGINT, SIGQUIT, SIGTERM}; +static const int catchedSigs[] = {SIGHUP, SIGINT, SIGQUIT, SIGTERM, + SIGUSR1, SIGUSR2}; RclConfig *recollinit(RclInitFlags flags, void (*cleanup)(void), void (*sigcleanup)(int),