natSocketChannelImpl.cc: Added support for platforms without network support.

2003-02-19  Michael Koch  <konqueror@gmx.de>

	* gnu/java/nio/natSocketChannelImpl.cc:
	Added support for platforms without network support.

From-SVN: r63155
This commit is contained in:
Michael Koch 2003-02-20 07:24:37 +00:00 committed by Michael Koch
parent 905280ac0c
commit bb7dd383f0
2 changed files with 65 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-02-19 Michael Koch <konqueror@gmx.de>
* gnu/java/nio/natSocketChannelImpl.cc:
Added support for platforms without network support.
2003-02-19 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> 2003-02-19 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* gnu/gcj/runtime/natStackTrace.cc: Include platform.h immediately * gnu/gcj/runtime/natStackTrace.cc: Include platform.h immediately

View File

@ -1,6 +1,6 @@
// natSelectorImpl.cc // natSocketChannelImpl.cc
/* Copyright (C) 2002 Free Software Foundation /* Copyright (C) 2002, 2003 Free Software Foundation
This file is part of libgcj. This file is part of libgcj.
@ -19,6 +19,62 @@ details. */
#include <java/net/InetAddress.h> #include <java/net/InetAddress.h>
#include <java/net/SocketException.h> #include <java/net/SocketException.h>
#ifndef DISABLE_JAVA_NET
jint
gnu::java::nio::SocketChannelImpl::SocketCreate ()
{
throw new ::java::io::IOException (JvNewStringUTF ("SocketCreate not implemented"));
}
jint
gnu::java::nio::SocketChannelImpl::SocketConnect (jint,
::java::net::InetAddress *,
jint)
{
throw new ::java::io::IOException (JvNewStringUTF ("SocketConnect not implemented"));
}
jint
gnu::java::nio::SocketChannelImpl::SocketBind (jint, ::java::net::InetAddress *,
jint)
{
throw new ::java::io::IOException (JvNewStringUTF ("SocketBind not implemented"));
}
jint
gnu::java::nio::SocketChannelImpl::SocketListen (jint, jint)
{
throw new ::java::io::IOException (JvNewStringUTF ("SocketList not implemented"));
}
jint
gnu::java::nio::SocketChannelImpl::SocketAvailable (jint)
{
throw new ::java::net::SocketException (JvNewStringLatin1 ("SocketAvailable: not implemented"));
}
jint
gnu::java::nio::SocketChannelImpl::SocketClose (jint)
{
throw new ::java::net::SocketException (JvNewStringLatin1 ("SocketClose: not implemented"));
}
jint
gnu::java::nio::SocketChannelImpl::SocketRead (jint, jbyteArray, jint, jint)
{
throw new ::java::net::SocketException (JvNewStringLatin1 ("SocketRead: not implemented"));
}
jint
gnu::java::nio::SocketChannelImpl::SocketWrite (jint, jbyteArray, jint, jint)
{
throw new ::java::net::SocketException (JvNewStringLatin1 ("SocketWrite: not implemented"));
}
#else
jint jint
gnu::java::nio::SocketChannelImpl::SocketCreate () gnu::java::nio::SocketChannelImpl::SocketCreate ()
{ {
@ -112,3 +168,5 @@ gnu::java::nio::SocketChannelImpl::SocketWrite (jint fd, jbyteArray data,
return result; return result;
} }
#endif