3 /* Copyright (C) 1992, 2001, 2003, 2004 Free Software Foundation, Inc.
4 Written by James Clark (jjc@jclark.com)
6 This file is part of groff.
8 groff is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2, or (at your option) any later
13 groff is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License along
19 with groff; see the file COPYING. If not, write to the Free Software
20 Foundation, 51 Franklin St - Fifth Floor, Boston, MA 02110-1301, USA. */
22 /* Unfortunately vendors seem to have problems writing a <signal.h>
23 that is correct for C++, so we implement all signal handling in C. */
31 #include <sys/types.h>
41 extern void cleanup(void);
43 static RETSIGTYPE
handle_fatal_signal(int signum
)
45 signal(signum
, SIG_DFL
);
48 kill(getpid(), signum
);
50 /* MS-DOS and Win32 don't have kill(); the best compromise is
51 probably to use exit() instead. */
56 void catch_fatal_signals(void)
59 signal(SIGHUP
, handle_fatal_signal
);
61 signal(SIGINT
, handle_fatal_signal
);
62 signal(SIGTERM
, handle_fatal_signal
);
71 void ignore_fatal_signals()
74 signal(SIGHUP
, SIG_IGN
);
76 signal(SIGINT
, SIG_IGN
);
77 signal(SIGTERM
, SIG_IGN
);
80 #endif /* not HAVE_RENAME */