diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2007-06-12 14:31:26 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2007-06-12 14:31:26 +0000 |
commit | 374c1d382bcb2271b3a39ee369717f255ca0777a (patch) | |
tree | 989130eb5dea296e48f94e4863d26fa41030f9db /gdb/spu-linux-nat.c | |
parent | ba5016f142dbb4e7dbcc40d4e1317d6a95f01ea4 (diff) | |
download | gdb-374c1d382bcb2271b3a39ee369717f255ca0777a.zip gdb-374c1d382bcb2271b3a39ee369717f255ca0777a.tar.gz gdb-374c1d382bcb2271b3a39ee369717f255ca0777a.tar.bz2 |
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.
Diffstat (limited to 'gdb/spu-linux-nat.c')
-rw-r--r-- | gdb/spu-linux-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/spu-linux-nat.c b/gdb/spu-linux-nat.c index 6f55f1a..21a7c5d 100644 --- a/gdb/spu-linux-nat.c +++ b/gdb/spu-linux-nat.c @@ -250,7 +250,7 @@ spu_proc_xfer_spu (const char *annex, gdb_byte *readbuf, && lseek (fd, (off_t) offset, SEEK_SET) != (off_t) offset) { close (fd); - return -1; + return 0; } if (writebuf) |