diff options
Diffstat (limited to 'gdb/gdbthread.h')
-rw-r--r-- | gdb/gdbthread.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gdb/gdbthread.h b/gdb/gdbthread.h index 522b674..6768491 100644 --- a/gdb/gdbthread.h +++ b/gdb/gdbthread.h @@ -306,11 +306,12 @@ struct thread_info *find_thread_id (int num); returns the first thread in the list. */ struct thread_info *first_thread_of_process (int pid); -/* Returns any thread of process PID. */ +/* Returns any thread of process PID, giving preference to the current + thread. */ extern struct thread_info *any_thread_of_process (int pid); -/* Returns any non-exited thread of process PID, giving preference for - not executing threads. */ +/* Returns any non-exited thread of process PID, giving preference to + the current thread, and to not executing threads. */ extern struct thread_info *any_live_thread_of_process (int pid); /* Change the ptid of thread OLD_PTID to NEW_PTID. */ |