aboutsummaryrefslogtreecommitdiff
path: root/gdb/inf-ttrace.c
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2008-09-10 11:24:24 +0000
committerPedro Alves <palves@redhat.com>2008-09-10 11:24:24 +0000
commitb861ac8114b6e8351e6694c2a025dce137acb876 (patch)
treebcd20daf5a6f748460fb5685986672f05ff679bc /gdb/inf-ttrace.c
parent030b4912c632cdd459ca59e1b196c4293a691292 (diff)
downloadgdb-b861ac8114b6e8351e6694c2a025dce137acb876.zip
gdb-b861ac8114b6e8351e6694c2a025dce137acb876.tar.gz
gdb-b861ac8114b6e8351e6694c2a025dce137acb876.tar.bz2
* inf-ttrace.c (inf_ttrace_follow_fork): Declare locals at the
right scope level. (inf_ttrace_resume, inf_ttrace_wait): Typos.
Diffstat (limited to 'gdb/inf-ttrace.c')
-rw-r--r--gdb/inf-ttrace.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/gdb/inf-ttrace.c b/gdb/inf-ttrace.c
index cbc8ecb..5521eab 100644
--- a/gdb/inf-ttrace.c
+++ b/gdb/inf-ttrace.c
@@ -413,6 +413,9 @@ inf_ttrace_follow_fork (struct target_ops *ops, int follow_child)
lwpid_t lwpid, flwpid;
ttstate_t tts;
struct thread_info *last_tp = NULL;
+ struct breakpoint *step_resume_breakpoint = NULL;
+ CORE_ADDR step_range_start = 0, step_range_end = 0;
+ struct frame_id step_frame_id = null_frame_id;
/* FIXME: kettenis/20050720: This stuff should really be passed as
an argument by our caller. */
@@ -455,12 +458,10 @@ inf_ttrace_follow_fork (struct target_ops *ops, int follow_child)
if (follow_child)
{
/* Copy user stepping state to the new inferior thread. */
- struct breakpoint *step_resume_breakpoint = last_tp->step_resume_breakpoint;
- CORE_ADDR step_range_start = last_tp->step_range_start;
- CORE_ADDR step_range_end = last_tp->step_range_end;
- struct frame_id step_frame_id = last_tp->step_frame_id;
-
- struct thread_info *tp;
+ step_resume_breakpoint = last_tp->step_resume_breakpoint;
+ step_range_start = last_tp->step_range_start;
+ step_range_end = last_tp->step_range_end;
+ step_frame_id = last_tp->step_frame_id;
/* Otherwise, deleting the parent would get rid of this
breakpoint. */
@@ -894,7 +895,7 @@ inf_ttrace_resume (ptid_t ptid, int step, enum target_signal signal)
if (resume_all)
ptid = inferior_ptid;
- info = thread_find_pid (ptid);
+ info = find_thread_pid (ptid);
inf_ttrace_resume_lwp (info, request, sig);
if (resume_all)
@@ -1084,7 +1085,7 @@ inf_ttrace_wait (ptid_t ptid, struct target_waitstatus *ourstatus)
lwpid = tts.tts_u.tts_thread.tts_target_lwpid;
ptid = ptid_build (tts.tts_pid, lwpid, 0);
if (print_thread_events)
- printf_unfiltered(_("[%s has been terminated]\n")
+ printf_unfiltered(_("[%s has been terminated]\n"),
target_pid_to_str (ptid));
ti = find_thread_pid (ptid);
gdb_assert (ti != NULL);