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.243 by dl, Fri Aug 9 13:02:57 2013 UTC vs.
Revision 1.244 by dl, Fri Aug 9 18:43:41 2013 UTC

# Line 2755 | Line 2755 | public class ConcurrentHashMap<K,V> exte
2755                          return;
2756                      }
2757                  }
2758 <                else if ((s | WAITER) == 0) {
2758 >                else if ((s & WAITER) == 0) {
2759                      if (U.compareAndSwapInt(this, LOCKSTATE, s, s | WAITER)) {
2760                          waiting = true;
2761                          waiter = Thread.currentThread();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines