Initial import from FreeBSD RELENG_4:
[games.git] / contrib / groff / src / utils / indxbib / signal.c
1 /* Copyright (C) 1992, 2001 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 2, or (at your option) any later
9 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 along
17 with groff; see the file COPYING.  If not, write to the Free Software
18 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19
20 /* Unfortunately vendors seem to have problems writing a <signal.h>
21 that is correct for C++, so we implement all signal handling in C. */
22
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
26
27 #include <sys/types.h>
28 #include <signal.h>
29 #ifdef HAVE_UNISTD_H
30 #include <unistd.h>
31 #endif
32
33 #ifndef RETSIGTYPE
34 #define RETSIGTYPE void
35 #endif
36
37 extern void cleanup();
38
39 static RETSIGTYPE handle_fatal_signal(signum)
40      int signum;
41 {
42   signal(signum, SIG_DFL);
43   cleanup();
44   kill(getpid(), signum);
45 }
46
47 void catch_fatal_signals()
48 {
49 #ifdef SIGHUP
50   signal(SIGHUP, handle_fatal_signal);
51 #endif
52   signal(SIGINT, handle_fatal_signal);
53   signal(SIGTERM, handle_fatal_signal);
54 }
55
56 #ifndef HAVE_RENAME
57
58 void ignore_fatal_signals()
59 {
60 #ifdef SIGHUP
61   signal(SIGHUP, SIG_IGN);
62 #endif
63   signal(SIGINT, SIG_IGN);
64   signal(SIGTERM, SIG_IGN);
65 }
66
67 #endif /* not HAVE_RENAME */