diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-06-07 13:38:25 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-06-07 13:38:25 +0000 |
commit | 1a2ab13a57bdddae90088e334aa792d2af742a3d (patch) | |
tree | 61e7fe10a9e201d05012b29202e468bd093032b7 /gdb/ChangeLog | |
parent | 1f4e49505385a998c734d2349a201ba03d7aee65 (diff) | |
download | gdb-1a2ab13a57bdddae90088e334aa792d2af742a3d.zip gdb-1a2ab13a57bdddae90088e334aa792d2af742a3d.tar.gz gdb-1a2ab13a57bdddae90088e334aa792d2af742a3d.tar.bz2 |
gdb/
Clear stale specific bp_location from former whole breakpoint.
* breakpoint.c (delete_breakpoint): Move the stale referencing clear
code ...
(free_bp_location): ... here. Rename there the called function to
bpstat_remove_bp_location_callback.
(bpstat_remove_breakpoint_callback): Rename to ...
(bpstat_remove_bp_location_callback): ... here, change DATA resolution
to struct bp_location. Change the called function to
bpstat_remove_bp_location. Create new declaration for the function.
(bpstat_remove_breakpoint): Rename to ...
(bpstat_remove_bp_location): ..., change the parameter to loc, adjust
code for the new parameter type.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d3272bb..a19d860 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,18 @@ +2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com> + + Clear stale specific bp_location from former whole breakpoint. + * breakpoint.c (delete_breakpoint): Move the stale referencing clear + code ... + (free_bp_location): ... here. Rename there the called function to + bpstat_remove_bp_location_callback. + (bpstat_remove_breakpoint_callback): Rename to ... + (bpstat_remove_bp_location_callback): ... here, change DATA resolution + to struct bp_location. Change the called function to + bpstat_remove_bp_location. Create new declaration for the function. + (bpstat_remove_breakpoint): Rename to ... + (bpstat_remove_bp_location): ..., change the parameter to loc, adjust + code for the new parameter type. + 2010-06-07 Nathan Sidwell <nathan@codesourcery.com> * README: Make version-agnostic. |