diff options
author | Jeff Law <law@redhat.com> | 1996-03-11 16:21:51 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1996-03-11 16:21:51 +0000 |
commit | 803a31a3c8a818c10415e3ac767054c1d2e3f753 (patch) | |
tree | 63b9769a2525818d5ee64a981e9e53acded85d33 | |
parent | a9872a287b4da2a3ddc3b7bbc42a6ffe6c7d72e6 (diff) | |
download | gdb-803a31a3c8a818c10415e3ac767054c1d2e3f753.zip gdb-803a31a3c8a818c10415e3ac767054c1d2e3f753.tar.gz gdb-803a31a3c8a818c10415e3ac767054c1d2e3f753.tar.bz2 |
* From Peter Schauer:
* breakpoint.c (insert_breakpoints): Use ALL_BREAKPOINTS_SAFE.
(bpstat_stop_status): Likewise.
(remove_solib_event_breakpoints): Likewise.
(clear_momentary_breakpoints): Likewise.
(re_enable_breakpoints_in_shlibs): Don't reenable a breakpoint
if we still can't read the memory for that breakpoint.
(mention): Add bp_shlib_event case to keep gcc quiet.
-rw-r--r-- | gdb/ChangeLog | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 29224a3..c714985 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,28 @@ +Mon Mar 11 09:19:58 1996 Jeffrey A Law (law@cygnus.com) + + * From Peter Schauer: + * breakpoint.c (insert_breakpoints): Use ALL_BREAKPOINTS_SAFE. + (bpstat_stop_status): Likewise. + (remove_solib_event_breakpoints): Likewise. + (clear_momentary_breakpoints): Likewise. + (re_enable_breakpoints_in_shlibs): Don't reenable a breakpoint + if we still can't read the memory for that breakpoint. + (mention): Add bp_shlib_event case to keep gcc quiet. + +Fri Mar 8 12:08:12 1996 Jeffrey A Law (law@cygnus.com) + + * breakpoint.h (enum enable): New enum shlib_disabled for + shared library breakpoints that have been temporarily disabled. + * breakpoint.c: Handle temporarily disabled shared library + breakpoints like disabled breakpoints in most places. + (insert_breakpoints): Use shlib_disabled to indicate + that an unsettable breakpoint is only temporarily disabled. + (re_enable_breakpoints_in_shlibs): New function. + * corelow.c (solib_add_stub): After adding shared libraries, + try to reenable any temporarily disabled breakpoints. + * infcmd.c (attach_command): Likewise. + * infrun.c (wait_for_inferior): Likewise. + Fri Mar 8 11:41:25 1996 Ian Lance Taylor <ian@cygnus.com> * defs.h (extract_long_unsigned_integer): Declare. |