diff options
author | Christopher Faylor <me@cgf.cx> | 2001-06-24 21:57:50 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-06-24 21:57:50 +0000 |
commit | 125205875b0b7daf8ab919387924a98b83d918b7 (patch) | |
tree | 2e9ea0689cb086c404f69ce8a397210ea8605dc5 /winsup/cygwin/sigproc.cc | |
parent | 50b1264871afbdcb14a1fd5fae3fe3bc358c0bad (diff) | |
download | cygnal-125205875b0b7daf8ab919387924a98b83d918b7.tar.gz cygnal-125205875b0b7daf8ab919387924a98b83d918b7.tar.bz2 cygnal-125205875b0b7daf8ab919387924a98b83d918b7.zip |
* exceptions.cc (interrupt_setup): Move actions from setup_handler to here.
(setup_handler): Move actions after a successful interrupt to interrupt_setup.
* fork.cc (vfork): Augment debugging output.
* sigproc.cc (proc_subproc): Ditto.
* spawn.cc (spawn_guts): Ditto. Correctly fill out progname when spawn
NO_WAIT. Call signal handler when a signal arrives.
* sigproc.h: Declare a function.
Diffstat (limited to 'winsup/cygwin/sigproc.cc')
-rw-r--r-- | winsup/cygwin/sigproc.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc index 64256508a..e70a51b3a 100644 --- a/winsup/cygwin/sigproc.cc +++ b/winsup/cygwin/sigproc.cc @@ -306,7 +306,7 @@ proc_subproc (DWORD what, DWORD val) zombies[nzombies] = pchildren[val]; // Add to zombie array zombies[nzombies++]->process_state = PID_ZOMBIE;// Walking dead - sigproc_printf ("removing [%d], pid %d, handle %p, nchildren %d", + sigproc_printf ("zombifying [%d], pid %d, handle %p, nchildren %d", val, pchildren[val]->pid, hchildren[val], nchildren); if ((int) val < --nchildren) { |