diff options
author | Pedro Alves <palves@redhat.com> | 2012-11-20 17:49:02 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2012-11-20 17:49:02 +0000 |
commit | ef37bb07f04fb434fe37331e8cdd2e174394523d (patch) | |
tree | b223f435f5750fc0655030fa507ea6fff0e2840a /gdb/breakpoint.c | |
parent | b245bdfc672e8e9232e16205999f7e71ac9208b3 (diff) | |
download | gdb-ef37bb07f04fb434fe37331e8cdd2e174394523d.zip gdb-ef37bb07f04fb434fe37331e8cdd2e174394523d.tar.gz gdb-ef37bb07f04fb434fe37331e8cdd2e174394523d.tar.bz2 |
2012-11-20 Pedro Alves <palves@redhat.com>
* annotate.c (breakpoints_changed): Rename to ...
(annotate_breakpoints_changed): ... this.
(annotate_stopped, breakpoint_changed): Adjust caller.
* annotate.h (breakpoints_changed): Rename to ...
(annotate_breakpoints_changed): ... this.
* breakpoint.c (set_breakpoint_condition, breakpoint_set_commands)
(do_map_commands_command, init_raw_breakpoint, clear_command)
(set_ignore_count, enable_breakpoint_disp): Adjust callers.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index ccf7ee1..387ddb8 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -983,7 +983,7 @@ set_breakpoint_condition (struct breakpoint *b, char *exp, } mark_breakpoint_modified (b); - breakpoints_changed (); + annotate_breakpoints_changed (); observer_notify_breakpoint_modified (b); } @@ -1214,7 +1214,7 @@ breakpoint_set_commands (struct breakpoint *b, decref_counted_command_line (&b->commands); b->commands = alloc_counted_command_line (commands); - breakpoints_changed (); + annotate_breakpoints_changed (); observer_notify_breakpoint_modified (b); } @@ -1331,7 +1331,7 @@ do_map_commands_command (struct breakpoint *b, void *data) incref_counted_command_line (info->cmd); decref_counted_command_line (&b->commands); b->commands = info->cmd; - breakpoints_changed (); + annotate_breakpoints_changed (); observer_notify_breakpoint_modified (b); } } @@ -6996,7 +6996,7 @@ init_raw_breakpoint (struct breakpoint *b, struct gdbarch *gdbarch, if (bptype != bp_breakpoint && bptype != bp_hardware_breakpoint) b->pspace = sal.pspace; - breakpoints_changed (); + annotate_breakpoints_changed (); } /* set_raw_breakpoint is a low level routine for allocating and @@ -11941,7 +11941,7 @@ clear_command (char *arg, int from_tty) else printf_unfiltered (_("Deleted breakpoints ")); } - breakpoints_changed (); + annotate_breakpoints_changed (); for (ix = 0; VEC_iterate(breakpoint_p, found, ix, b); ix++) { @@ -14319,7 +14319,7 @@ set_ignore_count (int bptnum, int count, int from_tty) "crossings of breakpoint %d."), count, bptnum); } - breakpoints_changed (); + annotate_breakpoints_changed (); observer_notify_breakpoint_modified (b); return; } @@ -14584,7 +14584,7 @@ enable_breakpoint_disp (struct breakpoint *bpt, enum bpdisp disposition, bpt->disposition = disposition; bpt->enable_count = count; update_global_location_list (1); - breakpoints_changed (); + annotate_breakpoints_changed (); observer_notify_breakpoint_modified (bpt); } |