summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/exceptions.cc2
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index f00e893c5..18c8230ae 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,5 +1,10 @@
2012-06-02 Christopher Faylor <me.cygwin2012@cgf.cx>
+ * exceptions.cc (setup_handler): Make debugging output a little more
+ verbose.
+
+2012-06-02 Christopher Faylor <me.cygwin2012@cgf.cx>
+
* cygtls.h (_cygtls::protect_linked_list): Delete unused field.
2012-05-30 Corinna Vinschen <corinna@vinschen.de>
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc
index 458029f35..f78e8f7b6 100644
--- a/winsup/cygwin/exceptions.cc
+++ b/winsup/cygwin/exceptions.cc
@@ -865,7 +865,7 @@ setup_handler (int sig, void *handler, struct sigaction& siga, _cygtls *tls)
If the thread is already suspended (which can occur when a program
has called SuspendThread on itself) then just queue the signal. */
- sigproc_printf ("suspending thread");
+ sigproc_printf ("suspending thread, tls %p, _main_tls %p", tls, _main_tls);
res = SuspendThread (hth);
/* Just set pending if thread is already suspended */
if (res)