This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Make mark_breakpoints_out static...


.. for lack of use on other modules. OK?

- Volodya
commit e412d5bce8dc07b8e9f7a3c78276df5b02ee7d7f
Author: Vladimir Prus <vladimir@codesourcery.com>
Date:   Wed Nov 14 19:45:41 2007 +0300

    Make mark_breakpoints_out static.
    
    	* breakpoint.h (mark_breakpoints_out): Remove
    	declaration.
    	* breakpoint.c (mark_breakpoints_out): Make static.

diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
index 3dae38f..b67851d 100644
--- a/gdb/breakpoint.c
+++ b/gdb/breakpoint.c
@@ -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;
diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h
index 19b880c..7919d3f 100644
--- a/gdb/breakpoint.h
+++ b/gdb/breakpoint.h
@@ -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 *);

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]