aboutsummaryrefslogtreecommitdiff
path: root/gdb/NEWS
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2016-01-13 10:56:10 +0000
committerPedro Alves <palves@redhat.com>2016-01-13 11:03:19 +0000
commit663f6d42f47265d2deaa86c8a976e658fb13f820 (patch)
treebd245ce035bd243e40c05056a39ee0d28e8bc3c5 /gdb/NEWS
parentc84f6bbfe50ff13928360d3cc349d7c553867ce6 (diff)
downloadgdb-663f6d42f47265d2deaa86c8a976e658fb13f820.zip
gdb-663f6d42f47265d2deaa86c8a976e658fb13f820.tar.gz
gdb-663f6d42f47265d2deaa86c8a976e658fb13f820.tar.bz2
Add $_gthread convenience variable
This commit adds a new $_gthread convenience variable, that is like $_thread, but holds the current thread's global thread id. gdb/ChangeLog: 2016-01-13 Pedro Alves <palves@redhat.com> * NEWS: Mention $_gthread. * gdbthread.h (struct thread_info) <global_num>: Mention $_gthread. * thread.c (thread_num_make_value_helper): New function. (thread_id_make_value): Delete. (thread_id_per_inf_num_make_value, global_thread_id_make_value): New. (thread_funcs): Adjust. (gthread_funcs): New. (_initialize_thread): Register $_gthread variable. gdb/testsuite/ChangeLog: 2016-01-13 Pedro Alves <palves@redhat.com> * gdb.base/default.exp: Expect $_gthread as well. * gdb.multi/tids.exp: Test $_gthread. * gdb.threads/thread-specific.exp: Test $_gthread. gdb/doc/ChangeLog: 2016-01-13 Pedro Alves <palves@redhat.com> * gdb.texinfo (Threads): Document the $_gthread convenience variable. (Convenience Vars): Likewise.
Diffstat (limited to 'gdb/NEWS')
-rw-r--r--gdb/NEWS5
1 files changed, 4 insertions, 1 deletions
diff --git a/gdb/NEWS b/gdb/NEWS
index 024c184..d9cbb80 100644
--- a/gdb/NEWS
+++ b/gdb/NEWS
@@ -22,7 +22,7 @@
GDB now maintains a second thread ID per thread, referred to as the
global thread ID, which is the new equivalent of thread numbers in
- previous releases.
+ previous releases. See also $_gthread below.
For backwards compatibility, MI's thread IDs always refer to global
IDs.
@@ -37,6 +37,9 @@
* You can use "info threads -gid" to display the global thread ID of
all threads.
+* The new convenience variable $_gthread holds the global number of
+ the current thread.
+
* The new convenience variable $_inferior holds the number of the
current inferior.