Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-12-05 07:20:48 +0300
committerChristopher Faylor <me@cgf.cx>2003-12-05 07:20:48 +0300
commit57e6aca6677838a2fcaaad3785ba8629821c5bd0 (patch)
tree5f927841b95ed9842715f09603f82f970acd0b76
parent5d109bdeb0f5e0b6790296994e2ebb0c02303046 (diff)
* exceptions.cc (setup_handler): Remove ill-advised debugging output.
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/exceptions.cc4
2 files changed, 4 insertions, 4 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 2cb5fe16f..893d59489 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -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.
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc
index 15a9eb117..bc6f6e6ed 100644
--- a/winsup/cygwin/exceptions.cc
+++ b/winsup/cygwin/exceptions.cc
@@ -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)))
{