diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-06-11 12:58:54 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-06-11 12:58:54 +0000 |
commit | 2bdf28a09db4376a2c1e6181ce282e96e54de6a3 (patch) | |
tree | 5f27041e9d72674ac6eca2bf4f6e3f420f41602b /gdb/ChangeLog | |
parent | 5b9a19af4301a3b9928f2c93c6696d7eca0342ec (diff) | |
download | gdb-2bdf28a09db4376a2c1e6181ce282e96e54de6a3.zip gdb-2bdf28a09db4376a2c1e6181ce282e96e54de6a3.tar.gz gdb-2bdf28a09db4376a2c1e6181ce282e96e54de6a3.tar.bz2 |
gdb/
* breakpoint.c (breakpoint_restore_shadows): New OWNER comment.
(should_be_inserted): Return zero also on NULL OWNER.
(breakpoint_program_space_exit): New OWNER comment.
(insert_breakpoint_locations): Extend comment for OWNER.
(remove_breakpoint_1, remove_breakpoint): Assert on OWNER.
(breakpoint_init_inferior, breakpoint_here_p, breakpoint_thread_match):
New OWNER comment.
(print_it_typical): Return PRINT_UNKNOWN on NULL OWNER.
(watchpoint_check): New assert on BREAKPOINT_AT and OWNER.
(bpstat_check_location): New assert on OWNER.
(bpstat_check_watchpoint, bpstat_check_breakpoint_conditions): Move BL
and B initializations to the code block. New assert on them.
(print_one_breakpoint_location): New OWNER comment.
(watchpoint_locations_match): Assert on OWNER.
(breakpoint_locations_match): Move HW_POINT1 and HW_POINT2
initializations to the code block. New assert on OWNER.
(set_breakpoint_location_function): New assert on OWNER.
(disable_breakpoints_in_shlibs, disable_breakpoints_in_unloaded_shlib)
(bp_location_compare, update_global_location_list)
(update_global_location_list): New OWNER comment.
gdb/testsuite/
* gdb.base/moribund-step.exp: New.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 12028cf..4659b27 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,26 @@ +2010-06-11 Jan Kratochvil <jan.kratochvil@redhat.com> + + * breakpoint.c (breakpoint_restore_shadows): New OWNER comment. + (should_be_inserted): Return zero also on NULL OWNER. + (breakpoint_program_space_exit): New OWNER comment. + (insert_breakpoint_locations): Extend comment for OWNER. + (remove_breakpoint_1, remove_breakpoint): Assert on OWNER. + (breakpoint_init_inferior, breakpoint_here_p, breakpoint_thread_match): + New OWNER comment. + (print_it_typical): Return PRINT_UNKNOWN on NULL OWNER. + (watchpoint_check): New assert on BREAKPOINT_AT and OWNER. + (bpstat_check_location): New assert on OWNER. + (bpstat_check_watchpoint, bpstat_check_breakpoint_conditions): Move BL + and B initializations to the code block. New assert on them. + (print_one_breakpoint_location): New OWNER comment. + (watchpoint_locations_match): Assert on OWNER. + (breakpoint_locations_match): Move HW_POINT1 and HW_POINT2 + initializations to the code block. New assert on OWNER. + (set_breakpoint_location_function): New assert on OWNER. + (disable_breakpoints_in_shlibs, disable_breakpoints_in_unloaded_shlib) + (bp_location_compare, update_global_location_list) + (update_global_location_list): New OWNER comment. + 2010-06-09 Ulrich Weigand <uweigand@de.ibm.com> * Makefile.in (HFILES_NO_SRCDIR): Remove config/i386/nm-linux.h |