]> gcc.gnu.org Git - gcc.git/blob - libjava/gnu/java/nio/natSelectorImplEcos.cc
a733686c31c23b15f9b2b0661eed770194953dab
[gcc.git] / libjava / gnu / java / nio / natSelectorImplEcos.cc
1 // natSelectorImplEcos.cc
2
3 /* Copyright (C) 2003 Free Software Foundation
4
5 This file is part of libgcj.
6
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
9 details. */
10
11 #include <config.h>
12 #include <platform.h>
13
14 #include <errno.h>
15 #include <string.h>
16
17 #include <gnu/java/nio/SelectorImpl.h>
18 #include <java/io/IOException.h>
19
20 jint
21 gnu::java::nio::SelectorImpl::implSelect (jintArray read, jintArray write,
22 jintArray except, jlong timeout)
23 {
24 throw new ::java::io::IOException (JvNewStringUTF ("implSelect() not implemented"));
25 }
This page took 0.038224 seconds and 4 git commands to generate.