diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-07-11 04:52:50 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-07-11 04:52:50 +0000 |
commit | fe6750385724b6c284c2dbb5af73f5d6868794e0 (patch) | |
tree | 763bef990631393e195466b3d516b511bba1bcf1 /gdb/ChangeLog | |
parent | fee44494f17846307e8b24d5ad30ec86c791b9cd (diff) | |
download | gdb-fe6750385724b6c284c2dbb5af73f5d6868794e0.zip gdb-fe6750385724b6c284c2dbb5af73f5d6868794e0.tar.gz gdb-fe6750385724b6c284c2dbb5af73f5d6868794e0.tar.bz2 |
* infrun.c: Remove step_resume_{duplicate,shadow}. Replace
step_resume_break_address with step_resume_breakpoint (now local
to wait_for_inferior).
({insert,remove}_step_breakpoint): Remove.
(wait_for_inferior): Set step resume break with
set_momentary_breakpoint. Test hitting it with bpstat_stop_status
and bpstat_what (stop_step_resume_break removed).
* breakpoint.{h,c}, infrun.c: Return value from bpstat_what now struct
which includes previous return value as main_action, and a step_resume
bit.
* breakpoint.c (delete_breakpoint): If breakpoint was inserted, and
there is another breakpoint there, insert it.
* infrun.c (wait_for_inferior): Rearrange the spaghetti a bit. Use
a few more gotos.
Various: Clean up and add comments.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a124234..6fe11ea 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,21 @@ Sat Jul 10 09:54:17 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + * infrun.c: Remove step_resume_{duplicate,shadow}. Replace + step_resume_break_address with step_resume_breakpoint (now local + to wait_for_inferior). + ({insert,remove}_step_breakpoint): Remove. + (wait_for_inferior): Set step resume break with + set_momentary_breakpoint. Test hitting it with bpstat_stop_status + and bpstat_what (stop_step_resume_break removed). + * breakpoint.{h,c}, infrun.c: Return value from bpstat_what now struct + which includes previous return value as main_action, and a step_resume + bit. + * breakpoint.c (delete_breakpoint): If breakpoint was inserted, and + there is another breakpoint there, insert it. + * infrun.c (wait_for_inferior): Rearrange the spaghetti a bit. Use + a few more gotos. + Various: Clean up and add comments. + * infrun.c [TDESC]: Remove remaining tdesc code (see ChangeLog for Wed Nov 13 16:45:13 1991). |