natfilechannelimpl.cc

来自「this gcc-g++-3.3.1.tar.gz is a source fi」· CC 代码 · 共 54 行

CC
54
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?