mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-24 00:44:14 +08:00
Make mark_breakpoints_out static.
* breakpoint.h (mark_breakpoints_out): Remove declaration. * breakpoint.c (mark_breakpoints_out): Make static.
This commit is contained in:
parent
d6e956e5c2
commit
55a3f01f6f
@ -1,3 +1,10 @@
|
||||
2007-10-15 Vladimir Prus <vladimir@codesourcery.com>
|
||||
|
||||
Make mark_breakpoints_out static.
|
||||
* breakpoint.h (mark_breakpoints_out): Remove
|
||||
declaration.
|
||||
* breakpoint.c (mark_breakpoints_out): Make static.
|
||||
|
||||
2007-10-15 Vladimir Prus <vladimir@codesourcery.com>
|
||||
|
||||
Prevent clear_command from directly modifying breakpoint list.
|
||||
|
@ -200,6 +200,8 @@ static int single_step_breakpoint_inserted_here_p (CORE_ADDR pc);
|
||||
|
||||
static void free_bp_location (struct bp_location *loc);
|
||||
|
||||
static void mark_breakpoints_out (void);
|
||||
|
||||
/* Prototypes for exported functions. */
|
||||
|
||||
/* If FALSE, gdb will not use hardware support for watchpoints, even
|
||||
@ -1650,7 +1652,7 @@ remove_breakpoint (struct bp_location *b, insertion_state_t is)
|
||||
|
||||
/* Clear the "inserted" flag in all breakpoints. */
|
||||
|
||||
void
|
||||
static void
|
||||
mark_breakpoints_out (void)
|
||||
{
|
||||
struct bp_location *bpt;
|
||||
|
@ -701,8 +701,6 @@ extern void set_ignore_count (int, int, int);
|
||||
|
||||
extern void set_default_breakpoint (int, CORE_ADDR, struct symtab *, int);
|
||||
|
||||
extern void mark_breakpoints_out (void);
|
||||
|
||||
extern void breakpoint_init_inferior (enum inf_context);
|
||||
|
||||
extern struct cleanup *make_cleanup_delete_breakpoint (struct breakpoint *);
|
||||
|
Loading…
Reference in New Issue
Block a user