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

Posslbe for EventQueue.invokeAndWait to never return, without deadlocking

XMLWordPrintable

    • b01
    • generic
    • generic

      Run the following program:

      ###-------------------------------
      package mypackage;
      import java.awt.EventQueue;
      public class Class1 {
        public static void main(String[] args) throws Exception {
          EventQueue.invokeAndWait(new Runnable() {
            public void run() {
              throw new Error();
            }
          });
          System.out.println("hello");
        }
      }
      ###-------------------------------

      The stack trace for the Error is printed, but the invokeAndWait call never returns, normally or abruptly. So the thread using invokeAndWait waits forever, and there is no deadlock.

      In practice, we've seen this problem when using javax.swing.tree.DefaultMutableTreeNode, because some of its methods throw Error when an invariant is violated.
      ###@###.### 2005-2-04 00:06:37 GMT

            kbalasubsunw Kannan Balasubramanian (Inactive)
            mmma Marvin Ma (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: