summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-11-23 05:42:47 +0000
committerChristopher Faylor <me@cgf.cx>2003-11-23 05:42:47 +0000
commit0af8d6110b3d3072e9fd8431770e929ef13ebf1a (patch)
tree81d02f3df9a243de62716ab6481ccc05acc18f23 /winsup/cygwin
parent0670609d125cd894485cc965d17e0df3c0dc46dc (diff)
downloadcygnal-0af8d6110b3d3072e9fd8431770e929ef13ebf1a.tar.gz
cygnal-0af8d6110b3d3072e9fd8431770e929ef13ebf1a.tar.bz2
cygnal-0af8d6110b3d3072e9fd8431770e929ef13ebf1a.zip
* sigproc.cc (sig_send): Correct below checkin. Use
thisframe.call_signal_handler.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/sigproc.cc2
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)