Imported Upstream version 1.22.4
[platform/upstream/groff.git] / src / utils / indxbib / signal.c
1 /* Copyright (C) 1992-2018 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 /* Prototype */
39 void catch_fatal_signals(void);
40
41 extern void cleanup(void);
42
43 static RETSIGTYPE handle_fatal_signal(int signum)
44 {
45   signal(signum, SIG_DFL);
46   cleanup();
47 #ifdef HAVE_KILL
48   kill(getpid(), signum);
49 #else
50   /* MS-DOS and Win32 don't have kill(); the best compromise is
51      probably to use exit() instead. */
52   exit(signum);
53 #endif
54 }
55
56 void catch_fatal_signals(void)
57 {
58 #ifdef SIGHUP
59   signal(SIGHUP, handle_fatal_signal);
60 #endif
61   signal(SIGINT, handle_fatal_signal);
62   signal(SIGTERM, handle_fatal_signal);
63 }
64
65 #ifdef __cplusplus
66 }
67 #endif
68
69 #ifndef HAVE_RENAME
70
71 void ignore_fatal_signals()
72 {
73 #ifdef SIGHUP
74   signal(SIGHUP, SIG_IGN);
75 #endif
76   signal(SIGINT, SIG_IGN);
77   signal(SIGTERM, SIG_IGN);
78 }
79
80 #endif /* not HAVE_RENAME */