* pinfo (wait_subproc): Neverending debug tweaking.

This commit is contained in:
Christopher Faylor 2000-11-05 16:47:00 +00:00
parent 0c9ae85d56
commit 914f7bf565
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
Sun Nov 5 11:45:15 2000 Christopher Faylor <cgf@cygnus.com>
* pinfo (wait_subproc): Neverending debug tweaking.
Sun Nov 5 01:34:51 2000 Christopher Faylor <cgf@cygnus.com> Sun Nov 5 01:34:51 2000 Christopher Faylor <cgf@cygnus.com>
* pinfo.cc (winpids:add): New method. * pinfo.cc (winpids:add): New method.

View File

@ -1252,10 +1252,10 @@ wait_subproc (VOID *)
else else
{ {
system_printf ("nchildren %d, event[%d] %p, pchildren[%d] %p, events[0] %p, %E", system_printf ("nchildren %d, event[%d] %p, pchildren[%d] %p, events[0] %p, %E",
nchildren, i, events[i], i, (_pinfo *) pchildren[i], events[0]); nchildren, i, events[i], i - 1, (_pinfo *) pchildren[i - 1], events[0]);
system_printf ("pid %d, dwProcessId %u, progname '%s'", system_printf ("pid %d, dwProcessId %u, progname '%s'",
pchildren[i]->pid, pchildren[i]->dwProcessId, pchildren[i - 1]->pid, pchildren[i - 1]->dwProcessId,
pchildren[i]->progname); pchildren[i - 1]->progname);
} }
break; break;
} }