[gdbserver] mem-break.c:find_gdb_breakpoint_at: Make static.
authorPedro Alves <palves@redhat.com>
Tue, 22 Apr 2014 18:47:06 +0000 (19:47 +0100)
committerPedro Alves <palves@redhat.com>
Wed, 23 Apr 2014 17:53:36 +0000 (18:53 +0100)
Nothing calls this outside mem-break.c.

gdb/gdbserver/
2014-04-23  Pedro Alves  <palves@redhat.com>

* mem-break.c (find_gdb_breakpoint_at): Make static.
* mem-break.h (find_gdb_breakpoint_at): Delete declaration.

gdb/gdbserver/ChangeLog
gdb/gdbserver/mem-break.c
gdb/gdbserver/mem-break.h

index c419e43..f6ece1c 100644 (file)
@@ -1,5 +1,10 @@
 2014-04-23  Pedro Alves  <palves@redhat.com>
 
+       * mem-break.c (find_gdb_breakpoint_at): Make static.
+       * mem-break.h (find_gdb_breakpoint_at): Delete declaration.
+
+2014-04-23  Pedro Alves  <palves@redhat.com>
+
        * i386-low.c: Don't include break-common.h here.
        (i386_low_insert_watchpoint, i386_low_remove_watchpoint): Change
        prototype to take target_hw_bp_type as argument instead of a Z
index 5df950d..680e97f 100644 (file)
@@ -676,7 +676,10 @@ delete_breakpoint (struct breakpoint *todel)
   return delete_breakpoint_1 (proc, todel);
 }
 
-struct breakpoint *
+/* Locate a breakpoint placed at address WHERE and return a pointer
+   to its structure.  */
+
+static struct breakpoint *
 find_gdb_breakpoint_at (CORE_ADDR where)
 {
   struct process_info *proc = current_process ();
index 4346881..74369a7 100644 (file)
 struct breakpoint;
 struct fast_tracepoint_jump;
 
-/* Locate a breakpoint placed at address WHERE and return a pointer
-   to its structure.  */
-
-struct breakpoint *find_gdb_breakpoint_at (CORE_ADDR where);
-
 /* Create a new GDB breakpoint at WHERE.  Returns -1 if breakpoints
    are not supported on this target, 0 otherwise.  */