* 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.
This commit is contained in:
Jean Marie Diaz 1994-08-02 00:44:24 +00:00
parent e21679173e
commit d2a85f11be
3 changed files with 31 additions and 5 deletions

View file

@ -2149,6 +2149,11 @@ mention (b)
{
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);
@ -3238,8 +3243,6 @@ delete_breakpoint (bpt)
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. */
@ -3560,7 +3563,6 @@ enable_breakpoint (bpt)
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 ||
@ -3658,8 +3660,6 @@ disable_breakpoint (bpt)
bpt->enable = disabled;
breakpoints_changed ();
check_duplicates (bpt->address);
}