Also install handler for SIGTRAP.

This commit is contained in:
Ulrich Drepper 2000-03-21 04:53:40 +00:00
parent e532b6c68c
commit 7978041b09

View File

@ -1,5 +1,5 @@
/* Catch segmentation faults and print backtrace.
Copyright (C) 1998, 1999 Free Software Foundation, Inc.
Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
@ -231,6 +231,7 @@ install_handler (void)
#endif
INSTALL_FOR_SIG (SIGABRT, "abrt");
INSTALL_FOR_SIG (SIGFPE, "fpe");
INSTALL_FOR_SIG (SIGTRAP, "trap");
}
/* Preserve the output file name if there is any given. */