2003-12-09 Michael Koch <konqueror@gmx.de>
* gnu/java/nio/SelectorImpl.java (implSelect): Throws IOException. (select): Likewise. From-SVN: r74468
This commit is contained in:
committed by
Michael Koch
parent
fa30fe72d1
commit
25a23f3b26
@@ -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 ();
|
||||
|
||||
Reference in New Issue
Block a user