From f1487a508b7e68c242d092a874d2b4ecd3a1ed6e Mon Sep 17 00:00:00 2001 From: kcwu Date: Mon, 27 Mar 2006 05:31:06 +0000 Subject: more meaningful message for SIGXCPU. git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3309 63ad8ddf-47c3-0310-b6dd-a9e9d9715204 --- mbbsd/mbbsd.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mbbsd/mbbsd.c b/mbbsd/mbbsd.c index 71bb5382..19709aa8 100644 --- a/mbbsd/mbbsd.c +++ b/mbbsd/mbbsd.c @@ -244,7 +244,11 @@ abort_bbs_debug(int sig) sigprocmask(SIG_UNBLOCK, &sigset, NULL); #define CRASH_MSG ANSI_COLOR(0) "\r\n程式異常, 立刻斷線. 請洽 PttBug 板詳述你發生的問題.\r\n" - write(1, CRASH_MSG, sizeof(CRASH_MSG)); +#define XCPU_MSG ANSI_COLOR(0) "\r\n程式耗用過多計算資源, 立刻斷線. 可能是 (a)執行太多耗用資源的動作 或 (b)程式掉入無窮迴圈. 請洽 PttBug 板詳述你發生的問題.\r\n" + if(sig==SIGXCPU) + write(1, XCPU_MSG, sizeof(XCPU_MSG)); + else + write(1, CRASH_MSG, sizeof(CRASH_MSG)); /* close all file descriptors (including the network connection) */ for (i = 0; i < 256; ++i) -- cgit v1.2.3