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.15 by jsr166, Mon Sep 20 20:18:25 2010 UTC vs.
Revision 1.16 by jsr166, Mon Sep 20 20:59:44 2010 UTC

# Line 557 | Line 557 | public class ConcurrentLinkedDeque<E>
557       * Guarantees that any node which was unlinked before a call to
558       * this method will be unreachable from head after it returns.
559       * Does not guarantee to eliminate slack, only that head will
560 <     * point to a node that was active after this method was invoked.
560 >     * point to a node that was active when this method was invoked.
561       */
562      private final void updateHead() {
563          // We need to ensure head either already points to an active
# Line 588 | Line 588 | public class ConcurrentLinkedDeque<E>
588       * Guarantees that any node which was unlinked before a call to
589       * this method will be unreachable from tail after it returns.
590       * Does not guarantee to eliminate slack, only that tail will
591 <     * point to a node that was active after this method was invoked.
591 >     * point to a node that was active when this method was invoked.
592       */
593      private final void updateTail() {
594          // We need to ensure tail either already points to an active

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines