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

(spec thread) Thread.State or related doc should clarify valid notifyAll() behavior

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P3 P3
    • 7
    • 5.0
    • core-libs
    • generic
    • generic

      what's thread state after it goes out of wait set but cannot win the competition for lock ? the following code gives different answer on Solaris and Windows XP:

      class State {

      public static void main(String[] args) throws Exception {

      Thread[] ta = new Thread[10];

      for (int i=0; i<10; i++) {
      ta[i] = new Thread() {
      public void run() {
      synchronized(Object.class) {
                                      System.out.println(Thread.currentThread().getName() + " enter");
      try {
              Object.class.wait();
      } catch(Exception e) {
      e.printStackTrace();
      }
                                      System.out.println(Thread.currentThread().getName() + " get lock");
      for(;;);
      }
                               }
                       };
      ta[i].start();
      }
      Thread.sleep(3000);
      synchronized(Object.class) {
      Object.class.notifyAll();
      }

      Thread.sleep(3000);
      for(int i = 0; i< ta.length; i++) {
      System.out.println(ta[i].getName() + " : " + ta[i].getState());
      }

      }
      }

      On both Solaris and Windows, only one thread is RUNNABLE after notifyAll() is called. but on Solaris, the states of other threads are all WAITING while on Windows, the states are all BLOCKED. As a result, use code depending on Thread.State will not write once, run anywhere. it will has different behaviour on different platforms.

            chegar Chris Hegarty
            mleisunw Mike Lei (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: