diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-11-28 04:33:47 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-11-28 04:33:47 +0000 |
commit | 8358c15c55744630cf69baf9acd134b8cc04e7c7 (patch) | |
tree | e7a982a8c87c619e6ac8542864159b7bc5c30936 /gdb/ChangeLog | |
parent | 16c381f0589cead48e7e707c6584ec8629601aad (diff) | |
download | gdb-8358c15c55744630cf69baf9acd134b8cc04e7c7.zip gdb-8358c15c55744630cf69baf9acd134b8cc04e7c7.tar.gz gdb-8358c15c55744630cf69baf9acd134b8cc04e7c7.tar.bz2 |
gdb/
Fix step_resume_breakpoint unsaved during an infcall.
* gdbthread.h (struct thread_control_state): Move here field
step_resume_breakpoint ...
(struct thread_info): ... from here.
* infrun.c (save_infcall_control_state): Reset
control.step_resume_breakpoint to NULL.
(restore_infcall_control_state, discard_infcall_control_state): Delete
control.step_resume_breakpoint.
* arm-linux-tdep.c, infrun.c, thread.c: Update all the references to
the moved field.
gdb/testsuite/
Fix step_resume_breakpoint unsaved during an infcall.
* gdb.base/step-resume-infcall.exp: New file.
* gdb.base/step-resume-infcall.c: New file.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index db9c50c..a7aa825 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,18 @@ 2010-11-28 Jan Kratochvil <jan.kratochvil@redhat.com> + Fix step_resume_breakpoint unsaved during an infcall. + * gdbthread.h (struct thread_control_state): Move here field + step_resume_breakpoint ... + (struct thread_info): ... from here. + * infrun.c (save_infcall_control_state): Reset + control.step_resume_breakpoint to NULL. + (restore_infcall_control_state, discard_infcall_control_state): Delete + control.step_resume_breakpoint. + * arm-linux-tdep.c, infrun.c, thread.c: Update all the references to + the moved field. + +2010-11-28 Jan Kratochvil <jan.kratochvil@redhat.com> + Rename and move inferior_thread_state and inferior_status. * gdbthread.h (struct thread_control_state): New struct, move fields step_range_start, step_range_end, step_frame_id, step_stack_frame_id, |