Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4142926

Object.wait(long) throws IllegalMonitorStateException for large numbers

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P3 P3
    • None
    • 1.2.0
    • hotspot
    • 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
      ========

      ======================================================================

            never Tom Rodriguez
            mgorshen Mikhail Gorshenev (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: