Remove catches for non-Trick exceptions

Forgot to add prototypes to turn on/off SIGABRT catching.

refs #220
This commit is contained in:
Alex Lin 2016-04-15 16:12:59 -05:00
parent 03d6105c6c
commit 6c991fae31

View File

@ -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) ;