diff options
author | Yao Qi <yao@codesourcery.com> | 2012-11-09 02:58:50 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2012-11-09 02:58:50 +0000 |
commit | fbd5db48c538738520ee7b9a0699499b56bc9411 (patch) | |
tree | d4aeba3bd6d20daf24d5b83a2cce5038286495aa /gdb/gdbserver/thread-db.c | |
parent | e714f336ee88378b0598be6ba077fe77c1d218bc (diff) | |
download | fsf-binutils-gdb-fbd5db48c538738520ee7b9a0699499b56bc9411.zip fsf-binutils-gdb-fbd5db48c538738520ee7b9a0699499b56bc9411.tar.gz fsf-binutils-gdb-fbd5db48c538738520ee7b9a0699499b56bc9411.tar.bz2 |
gdb/gdbserver:
2012-11-09 Yao Qi <yao@codesourcery.com>
* spu-low.c (current_ptid): Move it to ..
* gdbthread.h: ... here. New.
* remote-utils.c (read_ptid): Use macro 'current_ptid'.
* server.c (myresume, process_serial_event): Likewise.
* thread-db.c (thread_db_find_new_threads): Likewise.
* tracepoint.c (run_inferior_command): Likewise.
Diffstat (limited to 'gdb/gdbserver/thread-db.c')
-rw-r--r-- | gdb/gdbserver/thread-db.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbserver/thread-db.c b/gdb/gdbserver/thread-db.c index 4a59df6..9d2041d 100644 --- a/gdb/gdbserver/thread-db.c +++ b/gdb/gdbserver/thread-db.c @@ -406,7 +406,7 @@ static void thread_db_find_new_threads (void) { td_err_e err; - ptid_t ptid = ((struct inferior_list_entry *) current_inferior)->id; + ptid_t ptid = current_ptid; struct thread_db *thread_db = current_process ()->private->thread_db; int loop, iteration; |