indentation
[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
51 #ifndef MINGW
52   struct sigaction sig;
53 #endif
54
55   ret = GNUNET_malloc (sizeof (struct GNUNET_SIGNAL_Context));
56   ret->sig = signum;
57   ret->method = handler;
58 #ifndef MINGW
59   memset (&sig, 0, sizeof (sig));
60   sig.sa_handler = (void *) handler;
61   sigemptyset (&sig.sa_mask);
62 #ifdef SA_INTERRUPT
63   sig.sa_flags = SA_INTERRUPT;  /* SunOS */
64 #else
65   sig.sa_flags = SA_RESTART;
66 #endif
67   sigaction (signum, &sig, &ret->oldsig);
68 #else
69   if (signum == GNUNET_SIGCHLD)
70     w32_sigchld_handler = handler;
71   else
72   {
73     __p_sig_fn_t sigret = signal (signum, (__p_sig_fn_t) handler);
74
75     if (sigret == SIG_ERR)
76     {
77       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
78                   _("signal (%d, %p) returned %d.\n"), 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 }