* sigproc.cc (wait_subproc): Refine debug output.

This commit is contained in:
Christopher Faylor 2000-11-04 01:08:23 +00:00
parent 789080693e
commit c2445f2abc
2 changed files with 10 additions and 3 deletions

View File

@ -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

View File

@ -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;
}