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

Memory leak in AbstractQueuedSynchronizer.cancelAcquire(Node)

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 6
    • core-libs

      FULL PRODUCT VERSION :
      java version "1.6.0"
      Java(TM) SE Runtime Environment (build 1.6.0-b105)
      Java HotSpot(TM) Client VM (build 1.6.0-b105, mixed mode)

      ADDITIONAL OS VERSION INFORMATION :
      Microsoft Windows XP [Version 5.1.2600]

      A DESCRIPTION OF THE PROBLEM :
      When java.util.concurrent.locks.ReentrantLock.lockInterruptibly() is locked, memory is leaked.

      The leak appears to originate in:
      java.util.concurrent.locks.AbstractQueuedSynchronizer.cancelAcquire(Node), which removes a node from the queue without zeroing out its prev and next fields.


      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      Run the attached test program.

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
        Program runs for an indefinite period with a constant memory footprint.
      ACTUAL -
      Process memory increased monotonically.

      REPRODUCIBILITY :
      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      import java.util.concurrent.locks.ReentrantLock;

      public class LockInterruptMemoryLeakBug
      {
         public static void main(String[] args){
            final ReentrantLock lock = new ReentrantLock();
            
            Thread testThread = new Thread(){
               public void run(){
                  while(true){
                     try{
                        lock.lockInterruptibly();
                        lock.unlock();
                     }catch(InterruptedException e){}
                  }
               }
            };
            lock.lock();
            testThread.start();
            while(true){
               testThread.interrupt();
            }
         }
      }
      ---------- END SOURCE ----------

            martin Martin Buchholz
            ryeung Roger Yeung (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: