Commit 25a23f3b by Michael Koch Committed by Michael Koch

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

	* gnu/java/nio/SelectorImpl.java
	(implSelect): Throws IOException.
	(select): Likewise.

From-SVN: r74468
parent fa30fe72
2003-12-09 Michael Koch <konqueror@gmx.de>
* gnu/java/nio/SelectorImpl.java
(implSelect): Throws IOException.
(select): Likewise.
2003-12-08 Kim Ho <kho@redhat.com>
Fix for Checkbox states.
......
......@@ -104,7 +104,8 @@ public class SelectorImpl extends AbstractSelector
// A timeout value of -1 means block forever.
private static native int implSelect (int[] read, int[] write,
int[] except, long timeout);
int[] except, long timeout)
throws IOException;
private final int[] getFDsAsArray (int ops)
{
......@@ -144,6 +145,7 @@ public class SelectorImpl extends AbstractSelector
}
public int select (long timeout)
throws IOException
{
if (!isOpen())
throw new ClosedSelectorException ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment