ENH: Enabled process tree killing on AIX.

This commit is contained in:
Brad King 2006-03-08 13:06:46 -05:00
parent 6fb7bac013
commit bde71e9668
1 changed files with 1 additions and 1 deletions

View File

@ -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) || defined(__sgi)
#elif defined(__hpux) || defined(__sparc) || defined(__sgi) || defined(_AIX)
# define KWSYSPE_PS_COMMAND "ps -ef"
# define KWSYSPE_PS_FORMAT "%*s %d %d %*[^\n]\n"
#endif