This program:
public class HelloInterrupted {
public static void main(String[] args) throws Exception {
Thread.currentThread().interrupt();
System.out.println("Hello");
}
}
produces no output on solaris-sparc, It prints the expected output on
linux-i586 and windows-i586
###@###.### 2004-02-04
public class HelloInterrupted {
public static void main(String[] args) throws Exception {
Thread.currentThread().interrupt();
System.out.println("Hello");
}
}
produces no output on solaris-sparc, It prints the expected output on
linux-i586 and windows-i586
###@###.### 2004-02-04
- duplicates
-
JDK-4329256 interrupted thread no longer produces output (sol)
- Closed
- relates to
-
JDK-4764778 Interrupted thread can't load classes from classes directory (sol)
- Closed
-
JDK-4385444 (spec) InterruptedIOException should not be required by platform specification (sol)
- Closed