2009-10-20 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
* infrun.c (handle_inferior_event): Add pspace field to sal for reverse execution cases.
This commit is contained in:
parent
20176d8fbf
commit
9d1807c37c
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2009-10-20 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
|
||||||
|
|
||||||
|
* infrun.c (handle_inferior_event): Add pspace field to sal
|
||||||
|
for reverse execution cases.
|
||||||
|
|
||||||
2009-10-20 Ken Werner <ken@linux.vnet.ibm.com>
|
2009-10-20 Ken Werner <ken@linux.vnet.ibm.com>
|
||||||
|
|
||||||
* go32-nat.c (go32_create_inferior): Use inferior_appeared, not
|
* go32-nat.c (go32_create_inferior): Use inferior_appeared, not
|
||||||
|
|
|
@ -4261,6 +4261,7 @@ infrun: not switching back to stepped thread, it has vanished\n");
|
||||||
struct symtab_and_line tmp_sal;
|
struct symtab_and_line tmp_sal;
|
||||||
|
|
||||||
tmp_sal = find_pc_line (ecs->stop_func_start, 0);
|
tmp_sal = find_pc_line (ecs->stop_func_start, 0);
|
||||||
|
tmp_sal.pspace = get_frame_program_space (frame);
|
||||||
if (tmp_sal.line != 0)
|
if (tmp_sal.line != 0)
|
||||||
{
|
{
|
||||||
if (execution_direction == EXEC_REVERSE)
|
if (execution_direction == EXEC_REVERSE)
|
||||||
|
@ -4328,6 +4329,7 @@ infrun: not switching back to stepped thread, it has vanished\n");
|
||||||
struct symtab_and_line sr_sal;
|
struct symtab_and_line sr_sal;
|
||||||
init_sal (&sr_sal);
|
init_sal (&sr_sal);
|
||||||
sr_sal.pc = ecs->stop_func_start;
|
sr_sal.pc = ecs->stop_func_start;
|
||||||
|
sr_sal.pspace = get_frame_program_space (frame);
|
||||||
insert_step_resume_breakpoint_at_sal (gdbarch,
|
insert_step_resume_breakpoint_at_sal (gdbarch,
|
||||||
sr_sal, null_frame_id);
|
sr_sal, null_frame_id);
|
||||||
keep_going (ecs);
|
keep_going (ecs);
|
||||||
|
|
Loading…
Add table
Reference in a new issue