summaryrefslogtreecommitdiff
path: root/gdb/remote-sds.c
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2000-10-12 21:39:21 +0000
committerKevin Buettner <kevinb@redhat.com>2000-10-12 21:39:21 +0000
commitf255b69ceae2dc91f4ea92e5675f5c7f6bc77006 (patch)
treee0d7f2d67db7e0fc16fc1876db527ec69592177f /gdb/remote-sds.c
parentbe06da4b516671d62c4da11913cecf60d6cc2da4 (diff)
downloadgdb-f255b69ceae2dc91f4ea92e5675f5c7f6bc77006.tar.gz
Protoization.
Diffstat (limited to 'gdb/remote-sds.c')
-rw-r--r--gdb/remote-sds.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/gdb/remote-sds.c b/gdb/remote-sds.c
index f7fbf00fae1..15499787dab 100644
--- a/gdb/remote-sds.c
+++ b/gdb/remote-sds.c
@@ -662,16 +662,12 @@ sds_read_bytes (CORE_ADDR memaddr, char *myaddr, int len)
/* Read or write LEN bytes from inferior memory at MEMADDR,
transferring to or from debugger address MYADDR. Write to inferior
if SHOULD_WRITE is nonzero. Returns length of data written or
- read; 0 for error. */
+ read; 0 for error. TARGET is unused. */
/* ARGSUSED */
static int
-sds_xfer_memory (memaddr, myaddr, len, should_write, target)
- CORE_ADDR memaddr;
- char *myaddr;
- int len;
- int should_write;
- struct target_ops *target; /* ignored */
+sds_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int should_write,
+ struct target_ops *target)
{
return dcache_xfer_memory (sds_dcache, memaddr, myaddr, len, should_write);
}