* linux-low.c (linux_unprepare_to_access_memory): Rename to ...

(linux_done_accessing_memory): ... this.
	(linux_target_ops): Adjust.
	* linux-x86-low.c (x86_insert_point, x86_remove_point): Adjust.
	* nto-low.c (nto_target_ops): Adjust comment.
	* server.c (gdb_read_memory, gdb_write_memory): Adjust.
	* spu-low.c (spu_target_ops): Adjust comment.
	* target.h (target_ops): Rename unprepare_to_access_memory field
	to done_accessing_memory.
	(unprepare_to_access_memory): Rename to ...
	(done_accessing_memory): ... this.
This commit is contained in:
Pedro Alves
2010-08-27 00:16:48 +00:00
parent 6b911e8b2a
commit 0146f85bf7
8 changed files with 27 additions and 13 deletions

View File

@@ -5016,7 +5016,7 @@ linux_prepare_to_access_memory (void)
}
static void
linux_unprepare_to_access_memory (void)
linux_done_accessing_memory (void)
{
/* Neither ptrace nor /proc/PID/mem allow accessing memory through a
running LWP. */
@@ -5063,7 +5063,7 @@ static struct target_ops linux_target_ops = {
linux_fetch_registers,
linux_store_registers,
linux_prepare_to_access_memory,
linux_unprepare_to_access_memory,
linux_done_accessing_memory,
linux_read_memory,
linux_write_memory,
linux_look_up_symbols,