aboutsummaryrefslogtreecommitdiff
path: root/gdb/ChangeLog
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2013-06-11 10:20:11 +0000
committerJoel Brobecker <brobecker@gnat.com>2013-06-11 10:20:11 +0000
commit80e88e1aa2da7e516cfb7148fdd5d8777c2991dd (patch)
treece412f062df57a92cb9571f67fcb3348f66e6307 /gdb/ChangeLog
parent3368874f758405fa20d779077d66dc62095e9d0a (diff)
downloadgdb-80e88e1aa2da7e516cfb7148fdd5d8777c2991dd.zip
gdb-80e88e1aa2da7e516cfb7148fdd5d8777c2991dd.tar.gz
gdb-80e88e1aa2da7e516cfb7148fdd5d8777c2991dd.tar.bz2
windows: Add thread ID in SuspendThread error warning message.
This patch adds the thread ID to a warning printed when a call to SuspendThread fails. It will help investigate issues, particularly when correlated with the various debug traces provided by the windows-nat module. For the record, the output has been changed from... warning: SuspendThread failed. (winerr 6) ... to ... warning: SuspendThread (tid=0x720) failed. (winerr 6) gdb/ChangeLog: * window-nat.c (thread_rec): Add thread ID in SuspendThread warning message.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r--gdb/ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 493da1d..2fb7ac8 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2013-06-11 Joel Brobecker <brobecker@adacore.com>
+
+ * window-nat.c (thread_rec): Add thread ID in SuspendThread
+ warning message.
+
2013-06-08 Pedro Alves <pedro@codesourcery.com>
Yao Qi <yao@codesourcery.com>