diff options
author | Pedro Alves <palves@redhat.com> | 2016-08-10 23:03:28 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2016-08-10 23:03:28 +0100 |
commit | 834c0d033bdade640aab149d0d4bd7b41dcb16af (patch) | |
tree | 0f7032599f6776c858b2bf132aa1ce2632d3318d /gdb/ChangeLog | |
parent | 0375b0a53725b5b0bddcf8d31b707909f91afcb0 (diff) | |
download | gdb-834c0d033bdade640aab149d0d4bd7b41dcb16af.zip gdb-834c0d033bdade640aab149d0d4bd7b41dcb16af.tar.gz gdb-834c0d033bdade640aab149d0d4bd7b41dcb16af.tar.bz2 |
Simplify remove_breakpoint interface
All callers pass mark_uninserted, so there's no need for the 'is'
parameter.
gdb/ChangeLog:
2016-08-10 Pedro Alves <palves@redhat.com>
PR gdb/19187
* breakpoint.c (remove_breakpoint): Remove 'is' parameter and
always pass mark_uninserted to remove_breakpoint_1.
(insert_breakpoint_locations, remove_breakpoints)
(remove_breakpoints_pid, update_global_location_list): Update
callers.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 843da83..880ce72 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,12 @@ +2016-08-10 Pedro Alves <palves@redhat.com> + + PR gdb/19187 + * breakpoint.c (remove_breakpoint): Remove 'is' parameter and + always pass mark_uninserted to remove_breakpoint_1. + (insert_breakpoint_locations, remove_breakpoints) + (remove_breakpoints_pid, update_global_location_list): Update + callers. + 2016-08-10 Руслан Ижбулатов <lrn1986@gmail.com> Pedro Alves <palves@redhat.com> |