From 6c991fae31067d97bf22d63addff158af6fea0f7 Mon Sep 17 00:00:00 2001 From: Alex Lin Date: Fri, 15 Apr 2016 16:12:59 -0500 Subject: [PATCH] Remove catches for non-Trick exceptions Forgot to add prototypes to turn on/off SIGABRT catching. refs #220 --- include/trick/exec_proto.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/trick/exec_proto.h b/include/trick/exec_proto.h index 4ca1f2bb..d5a0a49b 100644 --- a/include/trick/exec_proto.h +++ b/include/trick/exec_proto.h @@ -38,6 +38,7 @@ extern "C" { int exec_get_trap_sigbus(void) ; int exec_get_trap_sigfpe(void) ; int exec_get_trap_sigsegv(void) ; + int exec_get_trap_sigabrt(void) ; int exec_set_attach_debugger(int on_off) ; int exec_set_debugger_command(const char * command) ; @@ -67,6 +68,7 @@ extern "C" { int exec_set_trap_sigbus(int on_off) ; int exec_set_trap_sigfpe(int on_off) ; int exec_set_trap_sigsegv(int on_off) ; + int exec_set_trap_sigabrt(int on_off) ; int exec_set_version_date_tag(const char * tag) ; int exec_set_build_date(const char * date) ; int exec_set_current_version(const char * version) ;