* external.cc (fillout_pinfo): Match windows pid, as well as cygwin pid when

passed in pid.  Don't prematurely break when searching for a pid.
* thread.h (_winsup_t): Eliminate unneeded field.
This commit is contained in:
Christopher Faylor
2001-03-18 02:49:29 +00:00
parent ee57685985
commit 00a7496150
3 changed files with 10 additions and 3 deletions

View File

@ -53,8 +53,9 @@ fillout_pinfo (pid_t pid, int winpid)
ep.dwProcessId = cygwin_pid (thispid);
ep.process_state = PID_IN_USE;
ep.ctty = -1;
break;
}
else if (nextpid || p->pid == pid)
else if (nextpid || p->pid == pid || (winpid && thispid == (DWORD) pid))
{
ep.ctty = tty_attached (p) ? p->ctty : -1;
ep.pid = p->pid;
@ -74,8 +75,8 @@ fillout_pinfo (pid_t pid, int winpid)
ep.strace_file = 0;
ep.process_state = p->process_state;
break;
}
break;
}
if (!ep.pid)