diff options
author | Pedro Alves <palves@redhat.com> | 2010-08-27 00:16:48 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2010-08-27 00:16:48 +0000 |
commit | 0146f85bf73a3395b8c0e17ed2beb0d737e5b8e1 (patch) | |
tree | 7b875c83f285f2758d56fb4340015fe14d20e52b /gdb/gdbserver/spu-low.c | |
parent | 6b911e8b2a82908924c9e23d04aeaa41c3b5c12f (diff) | |
download | fsf-binutils-gdb-0146f85bf73a3395b8c0e17ed2beb0d737e5b8e1.zip fsf-binutils-gdb-0146f85bf73a3395b8c0e17ed2beb0d737e5b8e1.tar.gz fsf-binutils-gdb-0146f85bf73a3395b8c0e17ed2beb0d737e5b8e1.tar.bz2 |
* 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.
Diffstat (limited to 'gdb/gdbserver/spu-low.c')
-rw-r--r-- | gdb/gdbserver/spu-low.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbserver/spu-low.c b/gdb/gdbserver/spu-low.c index dc301b2..1568c10 100644 --- a/gdb/gdbserver/spu-low.c +++ b/gdb/gdbserver/spu-low.c @@ -654,7 +654,7 @@ static struct target_ops spu_target_ops = { spu_fetch_registers, spu_store_registers, NULL, /* prepare_to_access_memory */ - NULL, /* unprepare_to_access_memory */ + NULL, /* done_accessing_memory */ spu_read_memory, spu_write_memory, spu_look_up_symbols, |