OSDN Git Service

* tree-ssa-ccp.c (ccp_finalize): Return if something changed.
[pf3gnuchains/gcc-fork.git] / libjava / gnu / java / nio / natVMPipePosix.cc
1 // natVMPipeImplPosix.cc
2
3 /* Copyright (C) 2003, 2004, 2007  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 #include <unistd.h>
17
18 #include <gnu/java/nio/PipeImpl.h>
19 #include <gnu/java/nio/VMPipe.h>
20 //#include <gnu/java/nio/PipeImpl$SinkChannelImpl.h>
21 //#include <gnu/java/nio/PipeImpl$SourceChannelImpl.h>
22 #include <java/io/IOException.h>
23 #include <java/nio/channels/spi/SelectorProvider.h>
24
25 void
26 gnu::java::nio::VMPipe::init (gnu::java::nio::PipeImpl*, /*self*/
27                               ::java::nio::channels::spi::SelectorProvider*
28                               /*provider*/)
29 {
30   int filedes [2];
31
32   if (_Jv_pipe (filedes) < 0)
33     throw new ::java::io::IOException (JvNewStringUTF (strerror (errno)));
34
35   /* FIXME
36   source = new gnu::java::nio::PipeImpl$SourceChannelImpl
37     (this, provider, filedes [0]);
38   sink = new gnu::java::nio::PipeImpl$SinkChannelImpl
39     (this, provider, filedes [1]);
40   */
41 }