Fix scripts to generate correct tables for compilers which have character constants...
[Samba/gebeck_regimport.git] / source3 / lib / signal.c
blobbff4b91c1a04fea64a57f2d4af833d67afd20bea
1 /*
2 Unix SMB/CIFS implementation.
3 signal handling functions
5 Copyright (C) Andrew Tridgell 1998
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include "includes.h"
24 /****************************************************************************
25 Catch child exits and reap the child zombie status.
26 ****************************************************************************/
28 static void sig_cld(int signum)
30 while (sys_waitpid((pid_t)-1,(int *)NULL, WNOHANG) > 0)
34 * Turns out it's *really* important not to
35 * restore the signal handler here if we have real POSIX
36 * signal handling. If we do, then we get the signal re-delivered
37 * immediately - hey presto - instant loop ! JRA.
40 #if !defined(HAVE_SIGACTION)
41 CatchSignal(SIGCLD, sig_cld);
42 #endif
45 /****************************************************************************
46 catch child exits - leave status;
47 ****************************************************************************/
49 static void sig_cld_leave_status(int signum)
52 * Turns out it's *really* important not to
53 * restore the signal handler here if we have real POSIX
54 * signal handling. If we do, then we get the signal re-delivered
55 * immediately - hey presto - instant loop ! JRA.
58 #if !defined(HAVE_SIGACTION)
59 CatchSignal(SIGCLD, sig_cld_leave_status);
60 #endif
63 /*******************************************************************
64 Block sigs.
65 ********************************************************************/
67 void BlockSignals(BOOL block,int signum)
69 #ifdef HAVE_SIGPROCMASK
70 sigset_t set;
71 sigemptyset(&set);
72 sigaddset(&set,signum);
73 sigprocmask(block?SIG_BLOCK:SIG_UNBLOCK,&set,NULL);
74 #elif defined(HAVE_SIGBLOCK)
75 if (block) {
76 sigblock(sigmask(signum));
77 } else {
78 sigsetmask(siggetmask() & ~sigmask(signum));
80 #else
81 /* yikes! This platform can't block signals? */
82 static int done;
83 if (!done) {
84 DEBUG(0,("WARNING: No signal blocking available\n"));
85 done=1;
87 #endif
90 /*******************************************************************
91 Catch a signal. This should implement the following semantics:
93 1) The handler remains installed after being called.
94 2) The signal should be blocked during handler execution.
95 ********************************************************************/
97 void (*CatchSignal(int signum,void (*handler)(int )))(int)
99 #ifdef HAVE_SIGACTION
100 struct sigaction act;
101 struct sigaction oldact;
103 ZERO_STRUCT(act);
105 act.sa_handler = handler;
106 #ifdef SA_RESTART
108 * We *want* SIGALRM to interrupt a system call.
110 if(signum != SIGALRM)
111 act.sa_flags = SA_RESTART;
112 #endif
113 sigemptyset(&act.sa_mask);
114 sigaddset(&act.sa_mask,signum);
115 sigaction(signum,&act,&oldact);
116 return oldact.sa_handler;
117 #else /* !HAVE_SIGACTION */
118 /* FIXME: need to handle sigvec and systems with broken signal() */
119 return signal(signum, handler);
120 #endif
123 /*******************************************************************
124 Ignore SIGCLD via whatever means is necessary for this OS.
125 ********************************************************************/
127 void CatchChild(void)
129 CatchSignal(SIGCLD, sig_cld);
132 /*******************************************************************
133 Catch SIGCLD but leave the child around so it's status can be reaped.
134 ********************************************************************/
136 void CatchChildLeaveStatus(void)
138 CatchSignal(SIGCLD, sig_cld_leave_status);