From 25a23f3b2682634eb52eacf8842924ec84bbdcf9 Mon Sep 17 00:00:00 2001 From: Michael Koch Date: Tue, 9 Dec 2003 15:34:07 +0000 Subject: 2003-12-09 Michael Koch * gnu/java/nio/SelectorImpl.java (implSelect): Throws IOException. (select): Likewise. From-SVN: r74468 --- libjava/gnu/java/nio/SelectorImpl.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'libjava/gnu/java') diff --git a/libjava/gnu/java/nio/SelectorImpl.java b/libjava/gnu/java/nio/SelectorImpl.java index 05a537a..180c7ee 100644 --- a/libjava/gnu/java/nio/SelectorImpl.java +++ b/libjava/gnu/java/nio/SelectorImpl.java @@ -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 (); -- cgit v1.1