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

BufferStrategyPaintManager.dispose will cause IllegalMonitorStateException in event thread

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 7
    • 7
    • client-libs
    • b130
    • generic
    • generic
    • Verified

      The bug in 6333055 also exists in BufferStrategyPaintManager.dispose:

          protected void dispose() {
              // dipose can be invoked at any random time. To avoid
              // threading dependancies we do the actual diposing via an
              // invokeLater.
              SwingUtilities.invokeLater(new Runnable() {
                  public void run() {
                      java.util.List<BufferInfo> bufferInfos;
                      synchronized(BufferStrategyPaintManager.this) {
                          while (showing) {
                              try {
                                  wait();
                              } catch (InterruptedException ie) {
                              }
                          }
                          bufferInfos = BufferStrategyPaintManager.this.bufferInfos;
                          BufferStrategyPaintManager.this.bufferInfos = null;
                      }
                      dispose(bufferInfos);
                  }
              });
          }

      we synchronize on the BufferStrategyPaintManager enclosing instance but then invoke wait() instead of BufferStrategyPaintManager.this.wait(). This will cause IllegalMonitorStateException to be thrown.

            rupashka Pavel Porvatov (Inactive)
            dholmes David Holmes
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: