summaryrefslogtreecommitdiffstats
path: root/mbbsd/mbbsd.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd/mbbsd.c')
-rw-r--r--mbbsd/mbbsd.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/mbbsd/mbbsd.c b/mbbsd/mbbsd.c
index 9a9b0ea7..d9f63df7 100644
--- a/mbbsd/mbbsd.c
+++ b/mbbsd/mbbsd.c
@@ -204,6 +204,15 @@ abort_bbs_debug(int sig)
static int reentrant = 0;
#endif
+ switch(sig) {
+ case SIGINT: STATINC(STAT_SIGINT); break;
+ case SIGQUIT: STATINC(STAT_SIGQUIT); break;
+ case SIGILL: STATINC(STAT_SIGILL); break;
+ case SIGABRT: STATINC(STAT_SIGABRT); break;
+ case SIGFPE: STATINC(STAT_SIGFPE); break;
+ case SIGBUS: STATINC(STAT_SIGBUS); break;
+ case SIGSEGV: STATINC(STAT_SIGSEGV); break;
+ }
#define CRASH_MSG "\033[0m\r\n程式異常, 立刻斷線. 請洽 PttBug 板詳述你發生的問題.\n"
/* NOTE: It's better to use signal-safe functions. Avoid to call
* functions with global/static variable -- data may be corrupted */