diff options
author | Gary Benson <gbenson@redhat.com> | 2007-01-18 11:32:40 +0000 |
---|---|---|
committer | Gary Benson <gary@gcc.gnu.org> | 2007-01-18 11:32:40 +0000 |
commit | 463c03f1bc2380d46a39e63efd00df157a18fee2 (patch) | |
tree | e8c12f9ab8dda0b6fb574b15c7043c09001acb33 /libjava/gnu/java/nio/natPipeImplPosix.cc | |
parent | 3253eafbda8e4af9522ecb9316bd8a2b1c853888 (diff) | |
download | gcc-463c03f1bc2380d46a39e63efd00df157a18fee2.zip gcc-463c03f1bc2380d46a39e63efd00df157a18fee2.tar.gz gcc-463c03f1bc2380d46a39e63efd00df157a18fee2.tar.bz2 |
natVMPipeEcos.cc: Renamed from gnu/java/nio/natPipeImplEcos.cc.
2007-01-18 Gary Benson <gbenson@redhat.com>
* gnu/java/nio/natVMPipeEcos.cc:
Renamed from gnu/java/nio/natPipeImplEcos.cc.
* gnu/java/nio/natVMPipePosix.cc:
Renamed from gnu/java/nio/natPipeImplPosix.cc.
* gnu/java/nio/natVMPipeWin32.cc:
Renamed from gnu/java/nio/natPipeImplWin32.cc.
* gnu/java/nio/natVMSelectorEcos.cc:
Renamed from gnu/java/nio/natSelectorImplEcos.cc.
* gnu/java/nio/natVMSelectorPosix.cc:
Renamed from gnu/java/nio/natSelectorImplPosix.cc.
* gnu/java/nio/natVMSelectorWin32.cc:
Renamed from gnu/java/nio/natSelectorImplWin32.cc.
* java/io/natVMObjectInputStream.cc:
Renamed from java/io/natObjectInputStream.cc.
* java/lang/natVMDouble.cc:
Renamed from java/lang/natDouble.cc.
* java/lang/natVMFloat.cc:
Renamed from java/lang/natFloat.cc.
* Makefile.am, configure.ac: Reflect the above.
* Makefile.in, configure: Rebuilt.
From-SVN: r120895
Diffstat (limited to 'libjava/gnu/java/nio/natPipeImplPosix.cc')
-rw-r--r-- | libjava/gnu/java/nio/natPipeImplPosix.cc | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/libjava/gnu/java/nio/natPipeImplPosix.cc b/libjava/gnu/java/nio/natPipeImplPosix.cc deleted file mode 100644 index 1726dc7..0000000 --- a/libjava/gnu/java/nio/natPipeImplPosix.cc +++ /dev/null @@ -1,41 +0,0 @@ -// natPipeImplPosix.cc - -/* Copyright (C) 2003, 2004 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 <config.h> -#include <platform.h> - -#include <errno.h> -#include <string.h> -#include <unistd.h> - -#include <gnu/java/nio/PipeImpl.h> -#include <gnu/java/nio/VMPipe.h> -//#include <gnu/java/nio/PipeImpl$SinkChannelImpl.h> -//#include <gnu/java/nio/PipeImpl$SourceChannelImpl.h> -#include <java/io/IOException.h> -#include <java/nio/channels/spi/SelectorProvider.h> - -void -gnu::java::nio::VMPipe::init (gnu::java::nio::PipeImpl*, /*self*/ - ::java::nio::channels::spi::SelectorProvider* - /*provider*/) -{ - int filedes [2]; - - if (_Jv_pipe (filedes) < 0) - throw new ::java::io::IOException (JvNewStringUTF (strerror (errno))); - - /* FIXME - source = new gnu::java::nio::PipeImpl$SourceChannelImpl - (this, provider, filedes [0]); - sink = new gnu::java::nio::PipeImpl$SinkChannelImpl - (this, provider, filedes [1]); - */ -} |