mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 20:28:28 +08:00
* 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:
@ -562,7 +562,7 @@ x86_insert_point (char type, CORE_ADDR addr, int len)
|
||||
if (ret)
|
||||
return -1;
|
||||
ret = set_gdb_breakpoint_at (addr);
|
||||
unprepare_to_access_memory ();
|
||||
done_accessing_memory ();
|
||||
return ret;
|
||||
}
|
||||
case '2':
|
||||
@ -590,7 +590,7 @@ x86_remove_point (char type, CORE_ADDR addr, int len)
|
||||
if (ret)
|
||||
return -1;
|
||||
ret = delete_gdb_breakpoint_at (addr);
|
||||
unprepare_to_access_memory ();
|
||||
done_accessing_memory ();
|
||||
return ret;
|
||||
}
|
||||
case '2':
|
||||
|
Reference in New Issue
Block a user