diff --git a/Source/kwsys/ProcessUNIX.c b/Source/kwsys/ProcessUNIX.c index 11ce2f14b..fc315a9db 100644 --- a/Source/kwsys/ProcessUNIX.c +++ b/Source/kwsys/ProcessUNIX.c @@ -620,14 +620,10 @@ int kwsysProcess_WaitForExit(kwsysProcess* cp, double* userTimeout) #endif #ifdef SIGINT case SIGINT: cp->ExitException = kwsysProcess_Exception_Interrupt; break; -#endif -#ifdef SIGABRT - case SIGABRT: cp->ExitException = kwsysProcess_Exception_Abort; break; #endif default: cp->ExitException = kwsysProcess_Exception_Other; break; } cp->ExitCode = status; - cp->ExitValue = (int)WTERMSIG(status); } else {