Add a third default.
[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 3, 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_util_lib.h"
29
30 #define LOG(kind,...) GNUNET_log_from (kind, "util", __VA_ARGS__)
31
32
33 struct GNUNET_SIGNAL_Context
34 {
35   int sig;
36
37   GNUNET_SIGNAL_Handler method;
38
39 #ifndef MINGW
40   struct sigaction oldsig;
41 #endif
42 };
43
44 #ifdef WINDOWS
45 GNUNET_SIGNAL_Handler w32_sigchld_handler = NULL;
46 #endif
47
48 struct GNUNET_SIGNAL_Context *
49 GNUNET_SIGNAL_handler_install (int signum, GNUNET_SIGNAL_Handler handler)
50 {
51   struct GNUNET_SIGNAL_Context *ret;
52
53 #ifndef MINGW
54   struct sigaction sig;
55 #endif
56
57   ret = GNUNET_malloc (sizeof (struct GNUNET_SIGNAL_Context));
58   ret->sig = signum;
59   ret->method = handler;
60 #ifndef MINGW
61   memset (&sig, 0, sizeof (sig));
62   sig.sa_handler = (void *) handler;
63   sigemptyset (&sig.sa_mask);
64 #ifdef SA_INTERRUPT
65   sig.sa_flags = SA_INTERRUPT;  /* SunOS */
66 #else
67   sig.sa_flags = SA_RESTART;
68 #endif
69   sigaction (signum, &sig, &ret->oldsig);
70 #else
71   if (signum == GNUNET_SIGCHLD)
72     w32_sigchld_handler = handler;
73   else
74   {
75     __p_sig_fn_t sigret = signal (signum, (__p_sig_fn_t) handler);
76
77     if (sigret == SIG_ERR)
78     {
79       LOG (GNUNET_ERROR_TYPE_WARNING, _("signal (%d, %p) returned %d.\n"),
80            signum, handler, sigret);
81     }
82   }
83 #endif
84   return ret;
85 }
86
87 void
88 GNUNET_SIGNAL_handler_uninstall (struct GNUNET_SIGNAL_Context *ctx)
89 {
90 #ifndef MINGW
91   struct sigaction sig;
92
93   sigemptyset (&sig.sa_mask);
94   sigaction (ctx->sig, &ctx->oldsig, &sig);
95 #endif
96   GNUNET_free (ctx);
97 }