summaryrefslogtreecommitdiff
path: root/gdb/exceptions.c
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2009-05-24 21:06:53 +0000
committerDoug Evans <dje@google.com>2009-05-24 21:06:53 +0000
commite24ff4483d0bff673eb239913a443d494537549d (patch)
tree718564470bd7aa8aebaae53ef784a7a00a368b8b /gdb/exceptions.c
parentac4005abc7a136127ae046db10aa5eaffe7a0aee (diff)
downloadgdb-e24ff4483d0bff673eb239913a443d494537549d.tar.gz
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/exceptions.c b/gdb/exceptions.c
index 3cee40d061f..a3ee378aeb3 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). */