📄 natfilechannelimpl.cc
字号:
// natFileChannelImpl.cc/* Copyright (C) 2003 Free Software Foundation This file is part of libgcj.This software is copyrighted work licensed under the terms of theLibgcj License. Please consult the file "LIBGCJ_LICENSE" fordetails. */#include <config.h>#include <jvm.h>#include <errno.h>#include <string.h>#include <sys/types.h>#ifdef HAVE_UNISTD_H#include <unistd.h>#endif#ifdef HAVE_FCNTL_H#include <fcntl.h>#endif#include <gnu/java/nio/FileChannelImpl.h>#include <java/io/IOException.h>#include <java/nio/channels/FileChannel.h>jlonggnu::java::nio::FileChannelImpl::lengthInternal (jint fd){ throw new ::java::io::IOException (JvNewStringUTF ("lengthInternal not implemented"));}jlonggnu::java::nio::FileChannelImpl::nio_mmap_file (jint, jlong, jint, jint){ throw new ::java::io::IOException (JvNewStringUTF ("mmap not implemented"));}voidgnu::java::nio::FileChannelImpl::nio_unmmap_file (jint, jlong, jint){ throw new ::java::io::IOException (JvNewStringUTF ("munmap not implemented"));}voidgnu::java::nio::FileChannelImpl::nio_msync (jint, jlong, jint){ throw new ::java::io::IOException (JvNewStringUTF ("msync not implemented"));}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -