diff options
author | Doug Evans <dje@google.com> | 2009-05-24 21:06:53 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2009-05-24 21:06:53 +0000 |
commit | e09875d41026beb03eae1a65510ca40ed3a5d6c1 (patch) | |
tree | b49d287ff4f61ffbb34feea63751e7ad7abcd7a1 /gdb/aix-thread.c | |
parent | 4e3990f4f91f2c3b0dd64fa80ce4662151763323 (diff) | |
download | gdb-e09875d41026beb03eae1a65510ca40ed3a5d6c1.zip gdb-e09875d41026beb03eae1a65510ca40ed3a5d6c1.tar.gz gdb-e09875d41026beb03eae1a65510ca40ed3a5d6c1.tar.bz2 |
gdb:
Global renaming of find_thread_pid to find_thread_ptid.
* gdbthread.h (find_thread_ptid): Renamed from find_thread_pid.
* thread.c (find_thread_ptid): Renamed from find_thread_pid.
All callers updated.
gdbserver:
Global renaming of find_thread_pid to find_thread_ptid.
* server.h (find_thread_ptid): Renamed from find_thread_pid.
* inferiors.c (find_thread_ptid): Renamed from find_thread_pid.
All callers updated.
Diffstat (limited to 'gdb/aix-thread.c')
-rw-r--r-- | gdb/aix-thread.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/aix-thread.c b/gdb/aix-thread.c index 983c79e..39be001 100644 --- a/gdb/aix-thread.c +++ b/gdb/aix-thread.c @@ -986,7 +986,7 @@ aix_thread_resume (struct target_ops *ops, } else { - thread = find_thread_pid (ptid); + thread = find_thread_ptid (ptid); if (!thread) error (_("aix-thread resume: unknown pthread %ld"), TIDGET (ptid)); @@ -1302,7 +1302,7 @@ aix_thread_fetch_registers (struct target_ops *ops, beneath->to_fetch_registers (beneath, regcache, regno); else { - thread = find_thread_pid (inferior_ptid); + thread = find_thread_ptid (inferior_ptid); tid = thread->private->tid; if (tid == PTHDB_INVALID_TID) @@ -1643,7 +1643,7 @@ aix_thread_store_registers (struct target_ops *ops, beneath->to_store_registers (beneath, regcache, regno); else { - thread = find_thread_pid (inferior_ptid); + thread = find_thread_ptid (inferior_ptid); tid = thread->private->tid; if (tid == PTHDB_INVALID_TID) |