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

Comparing jsr166/src/jsr166e/StampedLock.java (file contents):
Revision 1.17 by jsr166, Mon Oct 15 04:32:41 2012 UTC vs.
Revision 1.18 by jsr166, Mon Oct 15 05:26:53 2012 UTC

# Line 667 | Line 667 | public class StampedLock implements java
667              else if (m == WBIT) {
668                  if (a != m)
669                      break;
670 <                next = state = s + (WBIT + RUNIT);
670 >                state = next = s + (WBIT + RUNIT);
671                  readerPrefSignal();
672                  return next;
673              }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines