mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-01 11:50:11 -05:00
ENH: Treating SIGBUS as a fault by default.
This commit is contained in:
@@ -672,6 +672,9 @@ int kwsysProcess_WaitForExit(kwsysProcess* cp, double* userTimeout)
|
||||
#ifdef SIGSEGV
|
||||
case SIGSEGV: cp->ExitException = kwsysProcess_Exception_Fault; break;
|
||||
#endif
|
||||
#ifdef SIGBUS
|
||||
case SIGBUS: cp->ExitException = kwsysProcess_Exception_Fault; break;
|
||||
#endif
|
||||
#ifdef SIGFPE
|
||||
case SIGFPE: cp->ExitException = kwsysProcess_Exception_Numerical; break;
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user