Merge pull request #7906 from donaldsharp/sig_abrt

lib: Allow us to catch abort and do some small cleanup
This commit is contained in:
Mark Stapp 2021-01-22 15:33:27 -05:00 committed by GitHub
commit 284c5a4584
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -258,7 +258,7 @@ core_handler(int signo, siginfo_t *siginfo, void *context)
static void trap_default_signals(void)
{
static const int core_signals[] = {
SIGQUIT, SIGILL,
SIGQUIT, SIGILL, SIGABRT,
#ifdef SIGEMT
SIGEMT,
#endif