* exceptions.cc (setup_handler): Remove ill-advised debugging output.
This commit is contained in:
parent
5d109bdeb0
commit
57e6aca667
|
@ -1,3 +1,7 @@
|
|||
2003-12-04 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* exceptions.cc (setup_handler): Remove ill-advised debugging output.
|
||||
|
||||
2003-12-04 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* include/cygwin/types.h (struct __fcntl64): Fix datatype of l_start.
|
||||
|
|
|
@ -797,10 +797,6 @@ setup_handler (int sig, void *handler, struct sigaction& siga, _threadinfo *tls)
|
|||
{
|
||||
__stack_t retaddr;
|
||||
__stack_t *retaddr_on_stack = tls->stackptr - 1;
|
||||
#ifdef DEBUGGING
|
||||
if (tls->stackptr > (tls->stack + 1))
|
||||
try_to_debug ();
|
||||
#endif
|
||||
if (retaddr_on_stack >= tls->stack
|
||||
&& (retaddr = InterlockedExchange ((LONG *) retaddr_on_stack, 0)))
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue