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/infrun.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/infrun.c')
-rw-r--r-- | gdb/infrun.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c index bfca0b5..7d870eb 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -374,7 +374,7 @@ follow_fork (void) or another. The previous selected thread may be gone from the lists by now, but if it is still around, need to clear the pending follow request. */ - tp = find_thread_pid (parent); + tp = find_thread_ptid (parent); if (tp) tp->pending_follow.kind = TARGET_WAITKIND_SPURIOUS; @@ -1528,7 +1528,7 @@ proceed (CORE_ADDR addr, enum target_signal siggnal, int step) && !ptid_equal (last_ptid, null_ptid) && !ptid_equal (last_ptid, minus_one_ptid)) { - last_thread = find_thread_pid (last_ptid); + last_thread = find_thread_ptid (last_ptid); if (last_thread) { tp->stop_signal = last_thread->stop_signal; @@ -1757,7 +1757,7 @@ infrun_thread_stop_requested_callback (struct thread_info *info, void *arg) have consistent output as if the stop event had been reported. */ ecs->ptid = info->ptid; - ecs->event_thread = find_thread_pid (info->ptid); + ecs->event_thread = find_thread_ptid (info->ptid); ecs->ws.kind = TARGET_WAITKIND_STOPPED; ecs->ws.value.sig = TARGET_SIGNAL_0; @@ -2337,7 +2337,7 @@ handle_inferior_event (struct execution_control_state *ecs) && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED && ecs->new_thread_event) add_thread (ecs->ptid); - ecs->event_thread = find_thread_pid (ecs->ptid); + ecs->event_thread = find_thread_ptid (ecs->ptid); /* Dependent on valid ECS->EVENT_THREAD. */ adjust_pc_after_break (ecs); @@ -2864,7 +2864,7 @@ targets should add new threads to the thread list themselves in non-stop mode.") stop_signal = ecs->event_thread->stop_signal; ecs->event_thread->stop_signal = TARGET_SIGNAL_0; ecs->ptid = singlestep_ptid; - ecs->event_thread = find_thread_pid (ecs->ptid); + ecs->event_thread = find_thread_ptid (ecs->ptid); ecs->event_thread->stop_signal = stop_signal; stop_pc = new_singlestep_pc; } |