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/exceptions.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/exceptions.c')
-rw-r--r-- | gdb/exceptions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/exceptions.c b/gdb/exceptions.c index 3cee40d..a3ee378 100644 --- a/gdb/exceptions.c +++ b/gdb/exceptions.c @@ -219,7 +219,7 @@ throw_exception (struct gdb_exception exception) immediate_quit = 0; if (!ptid_equal (inferior_ptid, null_ptid)) - tp = find_thread_pid (inferior_ptid); + tp = find_thread_ptid (inferior_ptid); /* Perhaps it would be cleaner to do this via the cleanup chain (not sure I can think of a reason why that is vital, though). */ |