diff options
author | Roland McGrath <roland@redhat.com> | 1992-06-05 01:04:07 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1992-06-05 01:04:07 +0000 |
commit | fe8bcf44ef758f3f43ba8713c9dd8e649254a5f9 (patch) | |
tree | 596ae7367b2ecd1f6c2a7005e1e3a2593857817d | |
parent | 56ccbcff9a3895bfcfea45723caff1c8e104234d (diff) | |
download | gunmake-fe8bcf44ef758f3f43ba8713c9dd8e649254a5f9.tar.gz |
Formerly main.c.~46~
-rw-r--r-- | main.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -390,6 +390,8 @@ main (argc, argv, envp) FATAL_SIG (SIGHUP); FATAL_SIG (SIGQUIT); FATAL_SIG (SIGINT); + FATAL_SIG (SIGTERM); + FATAL_SIG (SIGILL); FATAL_SIG (SIGTRAP); FATAL_SIG (SIGIOT); @@ -400,10 +402,13 @@ main (argc, argv, envp) FATAL_SIG (SIGDANGER); #endif FATAL_SIG (SIGFPE); +#ifdef SIGBUS FATAL_SIG (SIGBUS); +#endif FATAL_SIG (SIGSEGV); +#ifdef SIGSYS FATAL_SIG (SIGSYS); - FATAL_SIG (SIGTERM); +#endif #ifdef SIGXCPU FATAL_SIG (SIGXCPU); #endif |