diff options
author | Vladimir Prus <vladimir@codesourcery.com> | 2007-09-22 17:49:41 +0000 |
---|---|---|
committer | Vladimir Prus <vladimir@codesourcery.com> | 2007-09-22 17:49:41 +0000 |
commit | 4f8d1dc6a5603e96bd38b0966edee1603edcea5b (patch) | |
tree | d75dd37eb851bf555559822b145d8284ea66dc05 /gdb/ChangeLog | |
parent | d5179552f619e8d0e18bda12c09c649fa9940562 (diff) | |
download | gdb-4f8d1dc6a5603e96bd38b0966edee1603edcea5b.zip gdb-4f8d1dc6a5603e96bd38b0966edee1603edcea5b.tar.gz gdb-4f8d1dc6a5603e96bd38b0966edee1603edcea5b.tar.bz2 |
Associate bp_stat with bp_location, not breakpoint.
* breakpoint.h (breakpoint_at): Change type
to bp_location*.
* breakpoint.c (bpstat_alloc): Take bp_location,
not breakpoint.
(bpstat_find_breakpoint): Look at bpstat's location's
owner, not at bpstat->breakpoint_at.
(bpstat_find_step_resume_breakpoint): Likewise.
(bpstat_num): Likewise.
(print_it_typical): Likewise.
(print_bp_stop_message): Likewise.
(watchpoint_check): Likewise.
(bpstat_what): Likewise.
(bpstat_get_triggered_catchpoints): Likewise.
(breakpoint_auto_delete): Likewise.
(delete_breakpoint): Likewise.
(bpstat_stop_status): Pass location, not breakpoint,
to bpstat_alloc. Look at bpstat's location's
owner, not at bpstat->breakpoint_at.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4e03263..b52ef21 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,25 @@ +2007-09-22 Vladimir Prus <vladimir@codesourcery.com> + + Associate bp_stat with bp_location, not breakpoint. + * breakpoint.h (breakpoint_at): Change type + to bp_location*. + * breakpoint.c (bpstat_alloc): Take bp_location, + not breakpoint. + (bpstat_find_breakpoint): Look at bpstat's location's + owner, not at bpstat->breakpoint_at. + (bpstat_find_step_resume_breakpoint): Likewise. + (bpstat_num): Likewise. + (print_it_typical): Likewise. + (print_bp_stop_message): Likewise. + (watchpoint_check): Likewise. + (bpstat_what): Likewise. + (bpstat_get_triggered_catchpoints): Likewise. + (breakpoint_auto_delete): Likewise. + (delete_breakpoint): Likewise. + (bpstat_stop_status): Pass location, not breakpoint, + to bpstat_alloc. Look at bpstat's location's + owner, not at bpstat->breakpoint_at. + 2007-09-21 Jim Blandy <jimb@codesourcery.com> * macrotab.h (new_macro_table): Document that removing information |