From 374c1d382bcb2271b3a39ee369717f255ca0777a Mon Sep 17 00:00:00 2001 From: Ulrich Weigand Date: Tue, 12 Jun 2007 14:31:26 +0000 Subject: ChangeLog: * spu-linux-nat.c (spu_proc_xfer_spu): Do not return failure when accessing non-seekable spufs files. gdbserver/ChangeLog: * spu-low.c (spu_proc_xfer_spu): Do not return failure when accessing non-seekable spufs files. --- gdb/gdbserver/ChangeLog | 5 +++++ gdb/gdbserver/spu-low.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'gdb/gdbserver') diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index c74f680..c922989 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,8 @@ +2007-06-12 Ulrich Weigand + + * spu-low.c (spu_proc_xfer_spu): Do not return failure when + accessing non-seekable spufs files. + 2007-05-16 Markus Deuling * server.c (handle_query): Add reply for qC packet. diff --git a/gdb/gdbserver/spu-low.c b/gdb/gdbserver/spu-low.c index 22ff74a..4d88833 100644 --- a/gdb/gdbserver/spu-low.c +++ b/gdb/gdbserver/spu-low.c @@ -248,7 +248,7 @@ spu_proc_xfer_spu (const char *annex, unsigned char *readbuf, && lseek (fd, (off_t) offset, SEEK_SET) != (off_t) offset) { close (fd); - return -1; + return 0; } if (writebuf) -- cgit v1.1