+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.
+
2012-11-20 David S. Miller <davem@davemloft.net>
* common/linux-osdata.c (get_number_of_cpu_cores): Delete.
}
\f
void
-breakpoints_changed (void)
+annotate_breakpoints_changed (void)
{
if (annotation_level == 2)
{
if (annotation_level > 1 && ignore_count_changed)
{
ignore_count_changed = 0;
- breakpoints_changed ();
+ annotate_breakpoints_changed ();
}
}
static void
breakpoint_changed (struct breakpoint *b)
{
- breakpoints_changed ();
+ annotate_breakpoints_changed ();
}
void
}
mark_breakpoint_modified (b);
- breakpoints_changed ();
+ annotate_breakpoints_changed ();
observer_notify_breakpoint_modified (b);
}
decref_counted_command_line (&b->commands);
b->commands = alloc_counted_command_line (commands);
- breakpoints_changed ();
+ annotate_breakpoints_changed ();
observer_notify_breakpoint_modified (b);
}
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);
}
}
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
else
printf_unfiltered (_("Deleted breakpoints "));
}
- breakpoints_changed ();
+ annotate_breakpoints_changed ();
for (ix = 0; VEC_iterate(breakpoint_p, found, ix, b); ix++)
{
"crossings of breakpoint %d."),
count, bptnum);
}
- breakpoints_changed ();
+ annotate_breakpoints_changed ();
observer_notify_breakpoint_modified (b);
return;
}
bpt->disposition = disposition;
bpt->enable_count = count;
update_global_location_list (1);
- breakpoints_changed ();
+ annotate_breakpoints_changed ();
observer_notify_breakpoint_modified (bpt);
}