From c1fb3625aebaa9ccacc16eb185f04a93e4ed459f Mon Sep 17 00:00:00 2001 From: Mohan Embar Date: Thu, 11 Dec 2003 15:35:13 +0000 Subject: * gnu/java/nio/SocketChannelImpl.java (write): Removed diagnostic trace. * gnu/java/nio/natSelectorImplPosix.cc: Added includes for java.lang.Thread and java.io.InterruptedIOException. (helper_put_filedescriptors): Don't put invalid file descriptors in select set. (helper_get_filedescriptors): Clear invalid file descriptors from select set. (helper_reset): New method for clearing our file descriptor array. (implSelect): Correctly calculate timeout if specified and legal. Intercept and deal with any java.io.InterruptedIOException thrown by _Jv_select(). From-SVN: r74537 --- libjava/gnu/java/nio/SocketChannelImpl.java | 2 -- 1 file changed, 2 deletions(-) (limited to 'libjava/gnu/java/nio/SocketChannelImpl.java') diff --git a/libjava/gnu/java/nio/SocketChannelImpl.java b/libjava/gnu/java/nio/SocketChannelImpl.java index 46c0d8c0fae..ced8ef2476a 100644 --- a/libjava/gnu/java/nio/SocketChannelImpl.java +++ b/libjava/gnu/java/nio/SocketChannelImpl.java @@ -301,8 +301,6 @@ public final class SocketChannelImpl extends SocketChannel data = src.array(); } - System.out.println ("INTERNAL: writing to socket outputstream"); - OutputStream output = socket.getOutputStream(); output.write (data, offset, len); -- cgit v1.2.3