ERR: SIGSEGV == SIGBUS on BeOS.

This commit is contained in:
Brad King 2004-03-12 14:43:32 -05:00
parent 94d8d25fd3
commit aeea4895a5
1 changed files with 2 additions and 0 deletions

View File

@ -1476,7 +1476,9 @@ static void kwsysProcessSetExitException(kwsysProcess* cp, int sig)
case SIGSEGV: KWSYSPE_CASE(Fault, "Segmentation fault"); break;
#endif
#ifdef SIGBUS
# if !defined(SIGSEGV) || SIGBUS != SIGSEGV
case SIGBUS: KWSYSPE_CASE(Fault, "Bus error"); break;
# endif
#endif
#ifdef SIGFPE
case SIGFPE: KWSYSPE_CASE(Numerical, "Floating-point exception"); break;