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

Comparing jsr166/src/main/java/util/concurrent/ConcurrentLinkedDeque.java (file contents):
Revision 1.29 by jsr166, Thu Jun 9 07:48:43 2011 UTC vs.
Revision 1.30 by jsr166, Thu Nov 24 02:35:12 2011 UTC

# Line 1406 | Line 1406 | public class ConcurrentLinkedDeque<E>
1406          initHeadTail(h, t);
1407      }
1408  
1409
1409      private boolean casHead(Node<E> cmp, Node<E> val) {
1410          return UNSAFE.compareAndSwapObject(this, headOffset, cmp, val);
1411      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines