Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2000-09-13 06:35:05 +0400
committerChristopher Faylor <me@cgf.cx>2000-09-13 06:35:05 +0400
commit858f5249178e01ca9a2ca375158a8633f20a4f3a (patch)
treeb2a09cfdeec28d3a585af11c84a7b50ccb87acd2 /winsup/cygwin/external.cc
parent67826e2264c4b3218e0cb5ca1bff681efd0dba66 (diff)
* external.cc (fillout_pinfo): Handle explicit pids correctly.
Diffstat (limited to 'winsup/cygwin/external.cc')
-rw-r--r--winsup/cygwin/external.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/external.cc b/winsup/cygwin/external.cc
index 74b106959..1bd86f5da 100644
--- a/winsup/cygwin/external.cc
+++ b/winsup/cygwin/external.cc
@@ -31,7 +31,7 @@ fillout_pinfo (pid_t pid, int winpid)
static winpids pids (0);
- if (!pids.npids)
+ if (!pids.npids || !nextpid)
pids.init ();
static unsigned int i = 0;
@@ -48,14 +48,14 @@ fillout_pinfo (pid_t pid, int winpid)
if (!p)
{
- if (!winpid)
+ if (!winpid || (!nextpid && thispid != pid))
continue;
ep.pid = thispid;
ep.dwProcessId = cygwin_pid (thispid);
ep.process_state = PID_IN_USE;
ep.ctty = -1;
}
- else if (p->pid)
+ else if (nextpid || p->pid == pid)
{
ep.ctty = tty_attached (p) ? p->ctty : -1;
ep.pid = p->pid;