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

Comparing jsr166/src/main/java/util/concurrent/ConcurrentHashMap.java (file contents):
Revision 1.99 by dl, Tue Apr 12 22:52:07 2011 UTC vs.
Revision 1.100 by dl, Wed Apr 13 13:23:56 2011 UTC

# Line 1 | Line 1
1   /*
2   * Written by Doug Lea with assistance from members of JCP JSR-166
3   * Expert Group and released to the public domain, as explained at
4 < * http://creativecommhons.org/publicdomain/zero/1.0/
4 > * http://creativecommons.org/publicdomain/zero/1.0/
5   */
6  
7   package java.util.concurrent;
# Line 86 | Line 86 | public class ConcurrentHashMap<K, V> ext
86       * but reduce the levels of indirection. Additionally,
87       * volatile-writes of table elements and entry "next" fields
88       * within locked operations use the cheaper "lazySet" forms of
89 <     * writes (via putOrderedObject) because these write are always
89 >     * writes (via putOrderedObject) because these writes are always
90       * followed by lock releases that maintain sequential consistency
91       * of table updates.
92       *

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines