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

* gnu/java/nio/DatagramChannelImpl.java
	(blocking): Initialize with true by default.
	* gnu/java/nio/ServerSocketChannelImpl.java
	(serverSocket): Made private.
	(blocking): Likewise.
	(connected): Likewise.
	* gnu/java/nio/SocketChannelImpl.java
	(connectionPending): Made private.
	* gnu/java/nio/FileLockImpl.java
	(static): Load native library (needed for classpath).
	* gnu/java/nio/SelectorImpl.java
	(static): Load native library (needed for classpath).

From-SVN: r74181
This commit is contained in:
Michael Koch
2003-12-02 15:03:21 +00:00
committed by Michael Koch
parent a74e3b7707
commit 598e749df6
6 changed files with 40 additions and 5 deletions
@@ -54,9 +54,9 @@ import java.nio.channels.spi.SelectorProvider;
public final class ServerSocketChannelImpl extends ServerSocketChannel
{
NIOServerSocket serverSocket;
boolean blocking = true;
boolean connected = false;
private NIOServerSocket serverSocket;
private boolean blocking = true;
private boolean connected;
protected ServerSocketChannelImpl (SelectorProvider provider)
throws IOException