4ff6fa9b4de53abf3e38647933d28fcffeda5329
[platform/upstream/groff.git] / src / utils / indxbib / signal.c
1 /* Copyright (C) 1992-2014  Free Software Foundation, Inc.
2      Written by James Clark (jjc@jclark.com)
3
4 This file is part of groff.
5
6 groff is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 groff is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18
19 /* Unfortunately vendors seem to have problems writing a <signal.h>
20 that is correct for C++, so we implement all signal handling in C. */
21
22 #include <stdlib.h>
23
24 #ifdef HAVE_CONFIG_H
25 #include <config.h>
26 #endif
27
28 #include <sys/types.h>
29 #include <signal.h>
30 #ifdef HAVE_UNISTD_H
31 #include <unistd.h>
32 #endif
33
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37
38 extern void cleanup(void);
39
40 static RETSIGTYPE handle_fatal_signal(int signum)
41 {
42   signal(signum, SIG_DFL);
43   cleanup();
44 #ifdef HAVE_KILL
45   kill(getpid(), signum);
46 #else
47   /* MS-DOS and Win32 don't have kill(); the best compromise is
48      probably to use exit() instead. */
49   exit(signum);
50 #endif
51 }
52
53 void catch_fatal_signals(void)
54 {
55 #ifdef SIGHUP
56   signal(SIGHUP, handle_fatal_signal);
57 #endif
58   signal(SIGINT, handle_fatal_signal);
59   signal(SIGTERM, handle_fatal_signal);
60 }
61
62 #ifdef __cplusplus
63 }
64 #endif
65
66 #ifndef HAVE_RENAME
67
68 void ignore_fatal_signals()
69 {
70 #ifdef SIGHUP
71   signal(SIGHUP, SIG_IGN);
72 #endif
73   signal(SIGINT, SIG_IGN);
74   signal(SIGTERM, SIG_IGN);
75 }
76
77 #endif /* not HAVE_RENAME */