commit 8f992243e63bb1dc5b6c3cca01917364ae131e22 parent 92cf31f6074489e95b744d846ed6c1aad23f517c Author: Michael Savage <mikejsavage@gmail.com> Date: Sun Nov 13 11:30:08 +0200 Add SIGTRAP to autogdb Diffstat:
autogdb.h | | | 1 | + |
diff --git a/autogdb.h b/autogdb.h @@ -109,6 +109,7 @@ static void install_debug_signal_handlers( bool debug_on_sigint ) { signal( SIGINT, prompt_to_run_gdb ); } signal( SIGILL, prompt_to_run_gdb ); + signal( SIGTRAP, prompt_to_run_gdb ); signal( SIGABRT, prompt_to_run_gdb ); signal( SIGSEGV, prompt_to_run_gdb ); }