diff options
| author | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-11-11 11:49:12 +0000 |
|---|---|---|
| committer | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-11-11 11:49:12 +0000 |
| commit | ffb7f8f8c6c6df27dcadf0bdc61a4a2edf2b68b4 (patch) | |
| tree | c80ab1a57d3bd04ed607e9739fe078abb21575f4 /libjava/gnu/java/nio/natSelectorImplEcos.cc | |
| parent | 98fd7750a474e66366b50a4672e64a58d24c7446 (diff) | |
| download | ppe42-gcc-ffb7f8f8c6c6df27dcadf0bdc61a4a2edf2b68b4.tar.gz ppe42-gcc-ffb7f8f8c6c6df27dcadf0bdc61a4a2edf2b68b4.zip | |
2003-11-11 Michael Koch <konqueror@gmx.de>
* gnu/java/nio/natPipeImpl.cc,
gnu/java/nio/natSelectorImpl.cc: Removed
* gnu/java/nio/natPipeImplEcos.cc,
gnu/java/nio/natPipeImplPosix.cc,
gnu/java/nio/natPipeImplWin32.cc,
gnu/java/nio/natSelectorImplEcos.cc,
gnu/java/nio/natSelectorImplPosix.cc,
gnu/java/nio/natSelectorImplWin32.cc: New files
* configure.in: Create links for gnu/java/nio/natPipeImpl.cc and
gnu/java/nio/natSelectorImpl.cc
* configure: Regenerated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73446 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/gnu/java/nio/natSelectorImplEcos.cc')
| -rw-r--r-- | libjava/gnu/java/nio/natSelectorImplEcos.cc | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/libjava/gnu/java/nio/natSelectorImplEcos.cc b/libjava/gnu/java/nio/natSelectorImplEcos.cc new file mode 100644 index 00000000000..a733686c31c --- /dev/null +++ b/libjava/gnu/java/nio/natSelectorImplEcos.cc @@ -0,0 +1,25 @@ +// natSelectorImplEcos.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 <config.h> +#include <platform.h> + +#include <errno.h> +#include <string.h> + +#include <gnu/java/nio/SelectorImpl.h> +#include <java/io/IOException.h> + +jint +gnu::java::nio::SelectorImpl::implSelect (jintArray read, jintArray write, + jintArray except, jlong timeout) +{ + throw new ::java::io::IOException (JvNewStringUTF ("implSelect() not implemented")); +} |

