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:
parent
fa30fe72d1
commit
25a23f3b26
2 changed files with 9 additions and 1 deletions
|
@ -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 ();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue