diff options
author | Christopher Faylor <me@cgf.cx> | 2003-08-30 20:43:06 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-08-30 20:43:06 +0000 |
commit | b939e87080a51efffeec05862be1cb17eea96428 (patch) | |
tree | 4bc4d8b780579421fabbf9167dc8fc847c680c0e /winsup/cygwin/exceptions.cc | |
parent | 40f3536c526cdc68d9786652b7dbac4c9d8c4289 (diff) | |
download | cygnal-b939e87080a51efffeec05862be1cb17eea96428.tar.gz cygnal-b939e87080a51efffeec05862be1cb17eea96428.tar.bz2 cygnal-b939e87080a51efffeec05862be1cb17eea96428.zip |
* sigproc.cc (sig_dispatch_pending): Remove explicit call to
thisframe.call_signal_handler.
Diffstat (limited to 'winsup/cygwin/exceptions.cc')
-rw-r--r-- | winsup/cygwin/exceptions.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc index 075b3cc92..ba86274de 100644 --- a/winsup/cygwin/exceptions.cc +++ b/winsup/cygwin/exceptions.cc @@ -688,6 +688,7 @@ interrupt_setup (int sig, void *handler, DWORD retaddr, DWORD *retaddr_on_stack, { sigsave.retaddr = retaddr; sigsave.retaddr_on_stack = retaddr_on_stack; +small_printf ("retaddr_on_stack %p\n", retaddr_on_stack); /* FIXME: Not multi-thread aware */ sigsave.oldmask = myself->getsigmask (); sigsave.newmask = sigsave.oldmask | siga.sa_mask | SIGTOMASK (sig); |