// natFileChannelImpl.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 #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_FCNTL_H #include #endif #include #include #include jlong gnu::java::nio::FileChannelImpl::lengthInternal (jint fd) { throw new ::java::io::IOException (JvNewStringUTF ("lengthInternal not implemented")); } jlong gnu::java::nio::FileChannelImpl::nio_mmap_file (jint, jlong, jint, jint) { throw new ::java::io::IOException (JvNewStringUTF ("mmap not implemented")); } void gnu::java::nio::FileChannelImpl::nio_unmmap_file (jint, jlong, jint) { throw new ::java::io::IOException (JvNewStringUTF ("munmap not implemented")); } void gnu::java::nio::FileChannelImpl::nio_msync (jint, jlong, jint) { throw new ::java::io::IOException (JvNewStringUTF ("msync not implemented")); }