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

Comparing jsr166/src/main/java/util/concurrent/ForkJoinWorkerThread.java (file contents):
Revision 1.50 by jsr166, Wed Jun 8 05:12:25 2011 UTC vs.
Revision 1.51 by jsr166, Mon Dec 5 04:08:47 2011 UTC

# Line 817 | Line 817 | public class ForkJoinWorkerThread extend
817                      (b = v.queueBase) != v.queueTop &&
818                      (q = v.queue) != null &&
819                      (i = (q.length - 1) & b) >= 0 &&
820 <                    q[i] ==  t) {
820 >                    q[i] == t) {
821                      long u = (i << ASHIFT) + ABASE;
822                      if (v.queueBase == b &&
823                          UNSAFE.compareAndSwapObject(q, u, t, null)) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines