+Mon Aug 1 16:43:24 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
+
+ * breakpoint.c (mention), main.c (fputs_unfiltered): Add comments.
+ * breakpoint.c (delete_breakpoint, enable_breakpoint,
+ disable_breakpoint): Don't call breakpoints_changed; it is now
+ called via the *_breakpoint_hook functions.
+ * annotate.c (_initialize_annotate, breakpoint_changed): New functions.
+
Mon Aug 1 13:38:04 1994 Kung Hsu (kung@mexican.cygnus.com)
* stabsread.c (read_type): Fix a bug in enum size calculation.
#include "value.h"
#include "target.h"
#include "gdbtypes.h"
+#include "breakpoint.h"
\f
static void print_value_flags PARAMS ((struct type *));
printf_filtered ("\n\032\032array-section-end\n");
}
+static void
+breakpoint_changed (b)
+ struct breakpoint *b;
+{
+ breakpoints_changed ();
+}
+
+void
+_initialize_annotate ()
+{
+ if (annotation_level > 1)
+ {
+ delete_breakpoint_hook = breakpoint_changed;
+ enable_breakpoint_hook = breakpoint_changed;
+ disable_breakpoint_hook = breakpoint_changed;
+ }
+}
{
int say_where = 0;
+ /* FIXME: This is misplaced; mention() is called by things (like hitting a
+ watchpoint) other than breakpoint creation. It should be possible to
+ clean this up and at the same time replace the random calls to
+ breakpoint_changed with this hook, as has already been done for
+ delete_breakpoint_hook and so on. */
if (create_breakpoint_hook)
create_breakpoint_hook (b);
if (bpt->source_file != NULL)
free (bpt->source_file);
- breakpoints_changed ();
-
/* Be sure no bpstat's are pointing at it after it's been freed. */
/* FIXME, how can we find all bpstat's?
We just check stop_bpstat for now. */
error ("Hardware breakpoints used exceeds limit.");
}
bpt->enable = enabled;
- breakpoints_changed ();
check_duplicates (bpt->address);
if (bpt->type == bp_watchpoint || bpt->type == bp_hardware_watchpoint ||
bpt->enable = disabled;
- breakpoints_changed ();
-
check_duplicates (bpt->address);
}