From 6fb7bac0131d3ae6b530bf59efbf702bf7dc781e Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 8 Mar 2006 12:42:59 -0500 Subject: [PATCH] ENH: Enabled process tree killing on the SGI. --- Source/kwsys/ProcessUNIX.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Source/kwsys/ProcessUNIX.c b/Source/kwsys/ProcessUNIX.c index 14258cee6..7ec19bcd2 100644 --- a/Source/kwsys/ProcessUNIX.c +++ b/Source/kwsys/ProcessUNIX.c @@ -1906,7 +1906,7 @@ static pid_t kwsysProcessFork(kwsysProcess* cp, #if defined(__linux__) || defined(__APPLE__) || defined(__FreeBSD__) # define KWSYSPE_PS_COMMAND "ps axo pid,ppid" # define KWSYSPE_PS_FORMAT "%d %d\n" -#elif defined(__hpux) || defined(__sparc) +#elif defined(__hpux) || defined(__sparc) || defined(__sgi) # define KWSYSPE_PS_COMMAND "ps -ef" # define KWSYSPE_PS_FORMAT "%*s %d %d %*[^\n]\n" #endif @@ -1914,7 +1914,9 @@ static pid_t kwsysProcessFork(kwsysProcess* cp, /*--------------------------------------------------------------------------*/ static void kwsysProcessKill(pid_t process_id) { +#if defined(__linux__) DIR* procdir; +#endif /* Suspend the process to be sure it will not create more children. */ kill(process_id, SIGSTOP);