LRN: Fix automake deps to allow -j* builds again
[oweals/gnunet.git] / src / util / signal.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2006 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 2, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file util/signal.c
23  * @brief code for installing and uninstalling signal handlers
24  * @author Christian Grothoff
25  */
26
27 #include "platform.h"
28 #include "gnunet_common.h"
29 #include "gnunet_signal_lib.h"
30
31 struct GNUNET_SIGNAL_Context
32 {
33   int sig;
34
35   GNUNET_SIGNAL_Handler method;
36
37 #ifndef MINGW
38   struct sigaction oldsig;
39 #endif
40 };
41
42 #ifdef WINDOWS
43 GNUNET_SIGNAL_Handler w32_sigchld_handler = NULL;
44 #endif
45
46 struct GNUNET_SIGNAL_Context *
47 GNUNET_SIGNAL_handler_install (int signum, GNUNET_SIGNAL_Handler handler)
48 {
49   struct GNUNET_SIGNAL_Context *ret;
50 #ifndef MINGW
51   struct sigaction sig;
52 #endif
53
54   ret = GNUNET_malloc (sizeof (struct GNUNET_SIGNAL_Context));
55   ret->sig = signum;
56   ret->method = handler;
57 #ifndef MINGW
58   memset (&sig, 0, sizeof (sig));
59   sig.sa_handler = (void *) handler;
60   sigemptyset (&sig.sa_mask);
61 #ifdef SA_INTERRUPT
62   sig.sa_flags = SA_INTERRUPT;  /* SunOS */
63 #else
64   sig.sa_flags = SA_RESTART;
65 #endif
66   sigaction (signum, &sig, &ret->oldsig);
67 #else
68   if (signum == GNUNET_SIGCHLD)
69     w32_sigchld_handler = handler;
70   else
71     {
72       __p_sig_fn_t sigret = signal (signum, (__p_sig_fn_t) handler);
73       if (sigret == SIG_ERR)
74         {
75           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
76               _
77               ("signal (%d, %p) returned %d.\n"),
78               signum, handler, sigret);
79         }
80     }
81 #endif
82   return ret;
83 }
84
85 void
86 GNUNET_SIGNAL_handler_uninstall (struct GNUNET_SIGNAL_Context *ctx)
87 {
88 #ifndef MINGW
89   struct sigaction sig;
90
91   sigemptyset (&sig.sa_mask);
92   sigaction (ctx->sig, &ctx->oldsig, &sig);
93 #endif
94   GNUNET_free (ctx);
95 }