ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/jsr166e/LongMaxUpdater.java
(Generate patch)

Comparing jsr166/src/jsr166e/LongMaxUpdater.java (file contents):
Revision 1.9 by dl, Sun May 4 22:38:19 2014 UTC vs.
Revision 1.10 by jsr166, Mon May 5 01:57:35 2014 UTC

# Line 52 | Line 52 | public class LongMaxUpdater extends Stri
52          if ((as = cells) != null ||
53              (b = base) < x && !casBase(b, x)) {
54              boolean uncontended = true;
55 <            if ((hc = threadHashCode.get()) == null ||
55 >            if ((hc = threadHashCode.get()) == null ||
56                  as == null || (n = as.length) < 1 ||
57                  (a = as[(n - 1) & hc[0]]) == null ||
58                  ((v = a.value) < x && !(uncontended = a.cas(v, x))))

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines