From: Yao Qi Date: Tue, 20 Nov 2012 03:10:24 +0000 (+0000) Subject: gdb/ X-Git-Tag: cgen-snapshot-20121201~103 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=de9f1b683d9c03145db04e403be2410aea6d3186;p=external%2Fbinutils.git gdb/ 2012-11-20 Yao Qi * infrun.c (handle_inferior_event): Pass 'saved_singlestep_ptid' to deprecated_context_hook. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 613bf2e..5d3760c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2012-11-20 Yao Qi + + * infrun.c (handle_inferior_event): Pass 'saved_singlestep_ptid' + to deprecated_context_hook. + 2012-11-19 Yao Qi * infrun.c (infwait_state): Add static. diff --git a/gdb/infrun.c b/gdb/infrun.c index b29fd2f..e7c20e1 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -3783,7 +3783,7 @@ handle_inferior_event (struct execution_control_state *ecs) context_switch (saved_singlestep_ptid); if (deprecated_context_hook) - deprecated_context_hook (pid_to_thread_id (ecs->ptid)); + deprecated_context_hook (pid_to_thread_id (saved_singlestep_ptid)); resume (1, GDB_SIGNAL_0); prepare_to_wait (ecs);