diff options
author | Adam Jackson <ajax@redhat.com> | 2009-04-06 11:05:17 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2009-04-06 11:05:17 -0400 |
commit | 843166b033dc0544b9f3cf3c91fc3ae3650bda14 (patch) | |
tree | 9fcda0db5fd4d259726d53e3a3d8fce9ff486648 /os | |
parent | aa6fbc2a3679896181610aee7ce2844d4322a5ce (diff) |
os: signal handlers return void.
Diffstat (limited to 'os')
-rw-r--r-- | os/utils.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/os/utils.c b/os/utils.c index 66957d56f..78a50b254 100644 --- a/os/utils.c +++ b/os/utils.c @@ -400,8 +400,7 @@ UnlockServer(void) /* Force connections to close on SIGHUP from init */ -/*ARGSUSED*/ -SIGVAL +void AutoResetServer (int sig) { int olderrno = errno; @@ -413,8 +412,7 @@ AutoResetServer (int sig) /* Force connections to close and then exit on SIGTERM, SIGINT */ -/*ARGSUSED*/ -SIGVAL +void GiveUp(int sig) { int olderrno = errno; |