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:
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/external.cc6
2 files changed, 7 insertions, 3 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index b83ca47cf..479fb7263 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+Tue Sep 12 22:33:30 2000 Christopher Faylor <cgf@cygnus.com>
+
+ * external.cc (fillout_pinfo): Handle explicit pids correctly.
+
Tue Sep 12 14:37:32 2000 Christopher Faylor <cgf@cygnus.com>
* path.cc (normalize_posix_path): Fix more slashdot madness.
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;