diff options
-rw-r--r-- | winsup/cygwin/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/cygwin/sigproc.cc | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index d861cf088..8a114de15 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,10 @@ 2003-11-23 Christopher Faylor <cgf@redhat.com> + * sigproc.cc (sig_send): Correct below checkin. Use + thisframe.call_signal_handler. + +2003-11-23 Christopher Faylor <cgf@redhat.com> + * sigproc.cc (proc_exists): A zombie process does not exist. (sig_send): Improve debugging output. Wait for pipe to be created before trying to send to it. Call call_signal_handler_now if sending a diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc index 0578cad8c..cecbe70c3 100644 --- a/winsup/cygwin/sigproc.cc +++ b/winsup/cygwin/sigproc.cc @@ -790,7 +790,7 @@ sig_send (_pinfo *p, int sig, DWORD ebp, bool exception) } if (wait_for_completion) - call_signal_handler_now (); + thisframe.call_signal_handler (); out: if (sig != __SIGPENDING) |