ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/jdk7/java/util/concurrent/ArrayBlockingQueue.java
(Generate patch)

Comparing jsr166/src/jdk7/java/util/concurrent/ArrayBlockingQueue.java (file contents):
Revision 1.4 by jsr166, Tue Oct 22 15:21:30 2013 UTC vs.
Revision 1.5 by jsr166, Fri Apr 11 21:15:44 2014 UTC

# Line 796 | Line 796 | public class ArrayBlockingQueue<E> exten
796          }
797  
798          /** Incremented whenever takeIndex wraps around to 0 */
799 <        int cycles = 0;
799 >        int cycles;
800  
801          /** Linked list of weak iterator references */
802          private Node head;
803  
804          /** Used to expunge stale iterators */
805 <        private Node sweeper = null;
805 >        private Node sweeper;
806  
807          private static final int SHORT_SWEEP_PROBES = 4;
808          private static final int LONG_SWEEP_PROBES = 16;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines