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
path: root/winsup
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2000-11-04 04:08:23 +0300
committerChristopher Faylor <me@cgf.cx>2000-11-04 04:08:23 +0300
commitc2445f2abc376fe20a426039b6c395ff8213f28b (patch)
treed69011fec877c804a3030c8d76f811a79cb5cb03 /winsup
parent789080693e56cd0032d00e21790f9be6ed4fba93 (diff)
* sigproc.cc (wait_subproc): Refine debug output.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/sigproc.cc9
2 files changed, 10 insertions, 3 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index f0b81ef8c..7d3ab63ea 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+Fri Nov 3 20:07:14 2000 Christopher Faylor <cgf@cygnus.com>
+
+ * sigproc.cc (wait_subproc): Refine debug output.
+
Thu Nov 2 23:01:20 2000 Christopher Faylor <cgf@cygnus.com>
* pinfo.cc (pinfo::init): Reverse order of setting status and pid info
diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc
index e2a310120..e22861cfb 100644
--- a/winsup/cygwin/sigproc.cc
+++ b/winsup/cygwin/sigproc.cc
@@ -1261,9 +1261,12 @@ wait_subproc (VOID *)
rc == WAIT_TIMEOUT)
continue;
else
- system_printf ("event[%d] %p, pid %d, dwProcessId %u, progname '%s', %E", i,
- events[0], pchildren[i]->pid, pchildren[i]->dwProcessId,
- pchildren[i]->progname);
+ {
+ system_printf ("event[%d] %p, pchildren[%d] %p, %E", i, i, pchildren[i]);
+ system_printf ("pid %d, dwProcessId %u, progname '%s'", i,
+ events[0], pchildren[i]->pid, pchildren[i]->dwProcessId,
+ pchildren[i]->progname);
+ }
break;
}