Exemplo n.º 1
0
void
annotate_stopped (void)
{
    if (annotation_level > 1)
        printf_filtered (("\n\032\032stopped\n"));
    if (annotation_level > 1 && ignore_count_changed)
    {
        ignore_count_changed = 0;
        breakpoints_changed ();
    }
}
Exemplo n.º 2
0
void
annotate_stopped(void)
{
  if (deprecated_annotate_stopped_hook)
    deprecated_annotate_stopped_hook();
  else
    {
      if (annotation_level > 1)
	printf_filtered(("\n\032\032stopped\n"));
    }
  if ((annotation_level > 1) && ignore_count_changed)
    {
      ignore_count_changed = 0;
      breakpoints_changed();
    }
}
Exemplo n.º 3
0
static void
breakpoint_changed(struct breakpoint *b)
{
  breakpoints_changed();
}
Exemplo n.º 4
0
static void
breakpoint_changed (int bpno)
{
  breakpoints_changed ();
}