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/remote-utils.c | |
parent | e714f336ee88378b0598be6ba077fe77c1d218bc (diff) | |
download | gdb-fbd5db48c538738520ee7b9a0699499b56bc9411.zip gdb-fbd5db48c538738520ee7b9a0699499b56bc9411.tar.gz 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/remote-utils.c')
-rw-r--r-- | gdb/gdbserver/remote-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbserver/remote-utils.c b/gdb/gdbserver/remote-utils.c index 0b3adac..63a3e80 100644 --- a/gdb/gdbserver/remote-utils.c +++ b/gdb/gdbserver/remote-utils.c @@ -761,7 +761,7 @@ read_ptid (char *buf, char **obuf) /* Since the stub is not sending a process id, then default to what's in the current inferior. */ - pid = ptid_get_pid (((struct inferior_list_entry *) current_inferior)->id); + pid = ptid_get_pid (current_ptid); if (obuf) *obuf = pp; |