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