From 45cb627406e6bc0fb523c8f40ef7fdec9e61df5c Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Fri, 3 Aug 2012 15:38:59 +0000 Subject: * exceptions.cc (sigdelayed): Simplify declaration. (_cygtls::call_signal_handler): Fix test for when to pop signal stack. Only do it exactly when what is on the stack is a no-op. --- winsup/cygwin/exceptions.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'winsup/cygwin/exceptions.cc') diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc index 7db2f00ff..afbbff4cb 100644 --- a/winsup/cygwin/exceptions.cc +++ b/winsup/cygwin/exceptions.cc @@ -37,9 +37,7 @@ details. */ char debugger_command[2 * NT_MAX_PATH + 20]; -extern "C" { -extern void sigdelayed (); -}; +extern "C" void sigdelayed (); static BOOL WINAPI ctrl_c_handler (DWORD); @@ -1086,7 +1084,7 @@ sigignore (int sig) } /* Update the signal mask for this process and return the old mask. - Called from sigdelayed */ + Called from call_signal_handler */ extern "C" sigset_t set_process_mask_delta () { @@ -1265,7 +1263,9 @@ _cygtls::call_signal_handler () break; } - if (incyg) + /* Pop the stack if the next "return address" is sigdelayed, since + this function is doing what sigdelayed would have done anyway. */ + if (retaddr () == (__stack_t) sigdelayed) pop (); debug_only_printf ("dealing with signal %d", sig); -- cgit v1.2.3