Add target method for converting thread handle to thread_info struct pointer
authorKevin Buettner <kevinb@redhat.com>
Wed, 4 May 2016 22:21:12 +0000 (15:21 -0700)
committerKevin Buettner <kevinb@redhat.com>
Thu, 21 Sep 2017 18:19:10 +0000 (11:19 -0700)
commite04ee09e24563f013c35cdebd7e9de3092b99b83
treeeaf075d4f3044a2217cf7a6f4aeb9c2afb99e3ac
parentf557a88ab120b75ddcc507c03d565c28e5f88c16
Add target method for converting thread handle to thread_info struct pointer

This patch adds a target method named `to_thread_handle_to_thread_info'.
It is intended to map a thread library specific thread handle (such as
pthread_t for the pthread library) to the corresponding GDB internal
thread_info struct (pointer).

An implementation is provided for Linux pthreads; see linux-thread-db.c.

gdb/ChangeLog:

* target.h (struct target_ops): Add to_thread_handle_to_thread_info.
(target_thread_handle_to_thread_info): Declare.
* target.c (target_thread_handle_to_thread_info): New function.
* target-delegates.c: Regenerate.
* gdbthread.h (find_thread_by_handle): Declare.
* thread.c (find_thread_by_handle): New function.
* linux-thread-db.c (thread_db_thread_handle_to_thread_info): New
function.
(init_thread_db_ops): Register thread_db_thread_handle_to_thread_info.
gdb/ChangeLog
gdb/gdbthread.h
gdb/linux-thread-db.c
gdb/target-delegates.c
gdb/target.c
gdb/target.h
gdb/thread.c
This page took 0.039083 seconds and 4 git commands to generate.