[gdbserver] mem-break.c:find_gdb_breakpoint_at: Make static.

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.
This commit is contained in:
Pedro Alves
2014-04-22 19:47:06 +01:00
parent a4165e94f4
commit 51aa91f979
3 changed files with 9 additions and 6 deletions

View 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 ();