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]

[cosmetic-patch] missing declaration in monitor.c


monitor_insert_breakpoint and monitor_remove_breakpoint used to be declared with other static function.

--
Denis

Index: monitor.c
===================================================================
--- monitor.c   (revision 486)
+++ monitor.c   (working copy)
@@ -85,6 +85,8 @@ static int monitor_xfer_memory (CORE_ADD
                               struct mem_attrib *attrib,
                               struct target_ops *target);
static void monitor_files_info (struct target_ops *ops);
+static int monitor_insert_breakpoint (struct bp_target_info *bp_tgt);
+static int monitor_remove_breakpoint (struct bp_target_info *bp_tgt);
static void monitor_kill (void);
static void monitor_load (char *file, int from_tty);
static void monitor_mourn_inferior (void);



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