From: Ulrich Drepper Date: Tue, 21 Mar 2000 04:53:40 +0000 (+0000) Subject: Also install handler for SIGTRAP. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7978041b0936483f29c6bde5a45492084febf197;p=thirdparty%2Fglibc.git Also install handler for SIGTRAP. --- diff --git a/sysdeps/generic/segfault.c b/sysdeps/generic/segfault.c index 41e3aa54d8d..30da438b323 100644 --- a/sysdeps/generic/segfault.c +++ b/sysdeps/generic/segfault.c @@ -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 , 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. */