Prevent clear_command from directly modifying breakpoint list.

* Makefile.in (breakpoint_h): Update dependency.
	* breakpoint.c (clear_command): Do not remove
	breakpoints from breakpoint_chain.  Collect breakpoints
	to delete in a vector.
	* breakpoint.h (breakpoint_p): New typedef for pointer to
	breakpoint.  Register vector of breakpoint_p.
This commit is contained in:
Vladimir Prus 2007-11-15 06:28:18 +00:00
parent db1fabac80
commit e368bc2495
1 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,13 @@
2007-10-15 Vladimir Prus <vladimir@codesourcery.com>
Prevent clear_command from directly modifying breakpoint list.
* Makefile.in (breakpoint_h): Update dependency.
* breakpoint.c (clear_command): Do not remove
breakpoints from breakpoint_chain. Collect breakpoints
to delete in a vector.
* breakpoint.h (breakpoint_p): New typedef for pointer to
breakpoint. Register vector of breakpoint_p.
2007-10-15 Vladimir Prus <vladimir@codesourcery.com>
Remove 'run_cleanup'.