summaryrefslogtreecommitdiff
path: root/libjava/gnu/java/nio/FileChannelImpl.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2003-06-20 12:01:54 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2003-06-20 12:01:54 +0000
commitc52c9fec50c450ea3c495fcfa1267d89be6329de (patch)
tree8a24e3385d6e3d894832f242bf0fb27f8fddbe25 /libjava/gnu/java/nio/FileChannelImpl.java
parent27a3e49454786b3eb1728793c30cb3d1c9b2e77e (diff)
MappedByteFileBuffer.java, [...]: Removed
2003-06-20 Michael Koch <konqueror@gmx.de> * gnu/java/nio/MappedByteFileBuffer.java, gnu/java/nio/natMappedByteFileBuffer.cc: Removed * java/nio/MappedByteBufferImpl.java: New file. * gnu/java/nio/FileChannelImpl.java: Use MappedByteBufferImpl instead of MappedByteFileBuffer. * Makefile.am (ordinary_java_source_files): Removed gnu/java/nio/MappedByteFileBuffer.java and added java/nio/MappedByteBufferImpl.java. (nat_source_files): Removed gnu/java/nio/natMappedByteFileBuffer.cc * Makefile.in: Regenerated. From-SVN: r68259
Diffstat (limited to 'libjava/gnu/java/nio/FileChannelImpl.java')
-rw-r--r--libjava/gnu/java/nio/FileChannelImpl.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/libjava/gnu/java/nio/FileChannelImpl.java b/libjava/gnu/java/nio/FileChannelImpl.java
index 392f479172c..97929ca786a 100644
--- a/libjava/gnu/java/nio/FileChannelImpl.java
+++ b/libjava/gnu/java/nio/FileChannelImpl.java
@@ -46,6 +46,7 @@ import java.io.IOException;
import java.io.RandomAccessFile;
import java.nio.ByteBuffer;
import java.nio.MappedByteBuffer;
+import java.nio.MappedByteBufferImpl;
import java.nio.channels.ClosedChannelException;
import java.nio.channels.FileChannel;
import java.nio.channels.FileLock;
@@ -260,7 +261,7 @@ public class FileChannelImpl extends FileChannel
int cmode = mode.m;
map_address = nio_mmap_file (position, size, cmode);
length = (int) size;
- buf = new MappedByteFileBuffer (this);
+ buf = new MappedByteBufferImpl (this);
return buf;
}
@@ -271,7 +272,7 @@ public class FileChannelImpl extends FileChannel
FileChannelImpl ch = new FileChannelImpl ();
ch.map_address = map_address;
ch.length = (int) length;
- ch.buf = new MappedByteFileBuffer (ch);
+ ch.buf = new MappedByteBufferImpl (ch);
return ch.buf;
}