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

Comparing jsr166/src/main/java/util/concurrent/LinkedTransferQueue.java (file contents):
Revision 1.71 by dl, Thu Aug 21 11:35:15 2014 UTC vs.
Revision 1.72 by jsr166, Wed Oct 29 20:23:14 2014 UTC

# Line 82 | Line 82 | public class LinkedTransferQueue<E> exte
82       *
83       * A FIFO dual queue may be implemented using a variation of the
84       * Michael & Scott (M&S) lock-free queue algorithm
85 <     * (http://www.cs.rochester.edu/u/scott/papers/1996_PODC_queues.pdf).
85 >     * (http://www.cs.rochester.edu/~scott/papers/1996_PODC_queues.pdf).
86       * It maintains two pointer fields, "head", pointing to a
87       * (matched) node that in turn points to the first actual
88       * (unmatched) queue node (or null if empty); and "tail" that

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines