diff options
Diffstat (limited to 'gdb/gdbthread.h')
-rw-r--r-- | gdb/gdbthread.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/gdbthread.h b/gdb/gdbthread.h index fe7acc2..d5101ab 100644 --- a/gdb/gdbthread.h +++ b/gdb/gdbthread.h @@ -448,6 +448,10 @@ extern struct thread_info *find_thread_ptid (ptid_t ptid); /* Find thread by GDB global thread ID. */ struct thread_info *find_thread_global_id (int global_id); +/* Find thread by thread library specific handle in inferior INF. */ +struct thread_info *find_thread_by_handle (struct value *thread_handle, + struct inferior *inf); + /* Finds the first thread of the inferior given by PID. If PID is -1, returns the first thread in the list. */ struct thread_info *first_thread_of_process (int pid); |