summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/kwsys/ProcessUNIX.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/kwsys/ProcessUNIX.c b/Source/kwsys/ProcessUNIX.c
index 11ce2f1..fc315a9 100644
--- a/Source/kwsys/ProcessUNIX.c
+++ b/Source/kwsys/ProcessUNIX.c
@@ -621,13 +621,9 @@ int kwsysProcess_WaitForExit(kwsysProcess* cp, double* userTimeout)
#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
{