diff options
author | Vladimir Prus <vladimir@codesourcery.com> | 2008-07-12 16:37:57 +0000 |
---|---|---|
committer | Vladimir Prus <vladimir@codesourcery.com> | 2008-07-12 16:37:57 +0000 |
commit | 1e92afda99a58f4427293937e49ef1ebe6bb3968 (patch) | |
tree | 557c242bc33c909ac7246c95349ac9bc82a01274 /gdb/gdbthread.h | |
parent | d56b7306e3b1a0d6eccae32f0f25d4a291c77ef2 (diff) | |
download | gdb-1e92afda99a58f4427293937e49ef1ebe6bb3968.zip gdb-1e92afda99a58f4427293937e49ef1ebe6bb3968.tar.gz gdb-1e92afda99a58f4427293937e49ef1ebe6bb3968.tar.bz2 |
Implement --thread and --frame.
* gdbthread.h (find_thread_id): Declare.
* thread.c (find_thread_id): Make non-static.
* mi/mi-main.c (mi_cmd_execute): Switch to the right
thread and frame, if necessary.
* mi/mi-parse.c (mi_parse): Handle --thread and --frame.
* mi/mi-parse.h (strcut mi_parse): New fields thread and frame.
Diffstat (limited to 'gdb/gdbthread.h')
-rw-r--r-- | gdb/gdbthread.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/gdbthread.h b/gdb/gdbthread.h index 3f1d217..f283865 100644 --- a/gdb/gdbthread.h +++ b/gdb/gdbthread.h @@ -148,6 +148,9 @@ extern int valid_thread_id (int thread); /* Search function to lookup a thread by 'pid'. */ extern struct thread_info *find_thread_pid (ptid_t ptid); +/* Find thread by GDB user-visible thread number. */ +struct thread_info *find_thread_id (int num); + /* Iterator function to call a user-provided callback function once for each known thread. */ typedef int (*thread_callback_func) (struct thread_info *, void *); |