aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/nio/channels/FileChannelImpl.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2003-10-21 12:55:02 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2003-10-21 12:55:02 +0000
commitc4ff410a6ba8420e1f8083a779b0ed57014e7d1c (patch)
treeb7e895aa7448dc513987e1cba0c84d6950bd30ea /libjava/java/nio/channels/FileChannelImpl.java
parent7c54b003358e3a314479edeafc13d1f7318a0497 (diff)
downloadgcc-c4ff410a6ba8420e1f8083a779b0ed57014e7d1c.zip
gcc-c4ff410a6ba8420e1f8083a779b0ed57014e7d1c.tar.gz
gcc-c4ff410a6ba8420e1f8083a779b0ed57014e7d1c.tar.bz2
ByteOrder.java, [...]: Add code to load library with code for native methods if needed.
2003-10-21 Michael Koch <konqueror@gmx.de> * java/nio/ByteOrder.java, java/nio/DirectByteBufferImpl.java, java/nio/channels/FileChannelImpl.java: Add code to load library with code for native methods if needed. From-SVN: r72747
Diffstat (limited to 'libjava/java/nio/channels/FileChannelImpl.java')
-rw-r--r--libjava/java/nio/channels/FileChannelImpl.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/libjava/java/nio/channels/FileChannelImpl.java b/libjava/java/nio/channels/FileChannelImpl.java
index 85113a0..a14a7e1 100644
--- a/libjava/java/nio/channels/FileChannelImpl.java
+++ b/libjava/java/nio/channels/FileChannelImpl.java
@@ -47,6 +47,7 @@ import java.io.RandomAccessFile;
import java.nio.ByteBuffer;
import java.nio.MappedByteBuffer;
import java.nio.MappedByteBufferImpl;
+import gnu.classpath.Configuration;
import gnu.gcj.RawData;
/**
@@ -59,6 +60,15 @@ import gnu.gcj.RawData;
public class FileChannelImpl extends FileChannel
{
+ static
+ {
+ // load the shared library needed for native methods.
+ if (Configuration.INIT_LOAD_LIBRARY)
+ {
+ System.loadLibrary ("javanio");
+ }
+ }
+
public RawData map_address;
int length;