* sigproc.cc (sig_dispatch_pending): Remove explicit call to

thisframe.call_signal_handler.
This commit is contained in:
Christopher Faylor 2003-08-30 20:43:06 +00:00
parent 40f3536c52
commit b939e87080
3 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2003-08-30 Christopher Faylor <cgf@redhat.com>
* sigproc.cc (sig_dispatch_pending): Remove explicit call to
thisframe.call_signal_handler.
2003-08-30 Christopher Faylor <cgf@redhat.com>
Remove some cygserver files.

View File

@ -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);

View File

@ -559,9 +559,6 @@ sig_dispatch_pending ()
#endif
}
if (was_pending)
thisframe.call_signal_handler ();
return was_pending;
}