aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/io/RandomAccessFile.java
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2001-08-02 23:46:39 +0000
committerTom Tromey <tromey@gcc.gnu.org>2001-08-02 23:46:39 +0000
commit8d6a437584510830e51262dabe3416c88dce431e (patch)
tree9a4a339f33e52b784286ab24c2d8b29c0c4f6d69 /libjava/java/io/RandomAccessFile.java
parentead4cf347a033e7876095f45aeb0066b972f51a0 (diff)
downloadgcc-8d6a437584510830e51262dabe3416c88dce431e.zip
gcc-8d6a437584510830e51262dabe3416c88dce431e.tar.gz
gcc-8d6a437584510830e51262dabe3416c88dce431e.tar.bz2
RandomAccessFile.java (seek): Let seek go past end of file.
* java/io/RandomAccessFile.java (seek): Let seek go past end of file. (skipBytes): Don't fail if seeking past end of file. * java/io/FileInputStream.java (skip): Don't fail if seeking past end of file. * java/io/natFileDescriptorWin32.cc (seek): Handle `eof_trunc' argument. * java/io/natFileDescriptorEcos.cc (seek): Handle `eof_trunc' argument. * java/io/natFileDescriptorPosix.cc (seek): Handle `eof_trunc' argument. * java/io/FileDescriptor.java (seek): Added `eof_trunc' argument. From-SVN: r44586
Diffstat (limited to 'libjava/java/io/RandomAccessFile.java')
-rw-r--r--libjava/java/io/RandomAccessFile.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/java/io/RandomAccessFile.java b/libjava/java/io/RandomAccessFile.java
index 9a0bf80..418974c 100644
--- a/libjava/java/io/RandomAccessFile.java
+++ b/libjava/java/io/RandomAccessFile.java
@@ -1,6 +1,6 @@
// RandomAccessFile.java
-/* Copyright (C) 1998, 1999 Free Software Foundation
+/* Copyright (C) 1998, 1999, 2001 Free Software Foundation
This file is part of libgcj.
@@ -161,12 +161,12 @@ public class RandomAccessFile implements DataOutput, DataInput
public void seek (long pos) throws IOException
{
- fd.seek(pos, FileDescriptor.SET);
+ fd.seek(pos, FileDescriptor.SET, false);
}
public int skipBytes (int count) throws IOException
{
- return fd.seek(count, FileDescriptor.CUR);
+ return count <= 0 ? 0 : fd.seek(count, FileDescriptor.CUR, true);
}
public void write (int oneByte) throws IOException