diff --git a/libjava/gnu/java/nio/FileLockImpl.java b/libjava/gnu/java/nio/FileLockImpl.java index eff3320770f4..23f67b8ded23 100644 --- a/libjava/gnu/java/nio/FileLockImpl.java +++ b/libjava/gnu/java/nio/FileLockImpl.java @@ -40,9 +40,9 @@ package gnu.java.nio; import java.io.FileDescriptor; import java.io.IOException; -import java.nio.channels.FileChannel; -import java.nio.channels.FileLock; +import java.nio.channels.*; import gnu.classpath.Configuration; +import gnu.java.nio.channels.FileChannelImpl; /** * @author Michael Koch @@ -59,13 +59,13 @@ public class FileLockImpl extends FileLock } } - private FileDescriptor fd; + private FileChannelImpl ch; - public FileLockImpl (FileDescriptor fd, FileChannel channel, long position, + public FileLockImpl (FileChannelImpl channel, long position, long size, boolean shared) { super (channel, position, size, shared); - this.fd = fd; + ch = channel; } protected void finalize() @@ -85,10 +85,8 @@ public class FileLockImpl extends FileLock return !channel().isOpen(); } - private native void releaseImpl () throws IOException; - public synchronized void release () throws IOException { - releaseImpl (); + ch.unlock(position(), size()); } } diff --git a/libjava/gnu/java/nio/natFileLockImpl.cc b/libjava/gnu/java/nio/natFileLockImpl.cc deleted file mode 100644 index d3d01a12df32..000000000000 --- a/libjava/gnu/java/nio/natFileLockImpl.cc +++ /dev/null @@ -1,24 +0,0 @@ -// natFileLockImpl.cc - -/* Copyright (C) 2003 Free Software Foundation - - This file is part of libgcj. - -This software is copyrighted work licensed under the terms of the -Libgcj License. Please consult the file "LIBGCJ_LICENSE" for -details. */ - -#include - -#include -#include - -#include -#include -#include - -void -gnu::java::nio::FileLockImpl::releaseImpl () -{ - fd->unlock(position(), size()); -}