-
Bug
-
Resolution: Duplicate
-
P3
-
None
-
1.2.0
-
sparc
-
solaris_2.5
Name: mgC56079 Date: 05/27/98
java.lang.Object.wait(long) throws IllegalMonitorStateException if parameter is
greater than or equal to 50000000000L.
JDK build is 1.2beta4G.
This causes JCK 1.2beta2 test failure: api/java_lang/Object/#Wait_long
======== A test demonstrating the bug ===================
public class WaitObject {
public static void main(String[] args) {
WaitObject o = new WaitObject();
try {
synchronized(o) {
o.wait(50000000000L);
}
}
catch( InterruptedException e ) {
System.out.println( "Another Thread interrupted" );
}
}
}
======== Fails with native threads ===================
% /set/java/JDK1.2-Beta4G/solaris/bin/java -native WaitObject
Exception in thread "main" java.lang.IllegalMonitorStateException: current thread not owner
at java.lang.Object.wait(Native Method)
at WaitObject.main(Compiled Code)
======== Works fine with green threads (does not return) ===================
% /set/java/JDK1.2-Beta4G/solaris/bin/java WaitObject
^C
========
======================================================================
- duplicates
-
JDK-4143186 Native threads VM running the rmiregistry uses 100% CPU
-
- Closed
-