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

Comparing jsr166/src/jsr166y/ForkJoinPool.java (file contents):
Revision 1.156 by dl, Thu Dec 13 20:47:38 2012 UTC vs.
Revision 1.157 by jsr166, Fri Dec 14 16:33:42 2012 UTC

# Line 1853 | Line 1853 | public class ForkJoinPool extends Abstra
1853                  (q = ws[h & m]) != null) {
1854                  for (int n = 2;;) { // limit to at most 2 signals
1855                      int idleCount = (caller.eventCount < 0) ? 0 : -1;
1856 <                    if (((s = idleCount - q.base + q.top) <= n &&
1856 >                    if (((s = idleCount - q.base + q.top) <= n &&
1857                           (n = s) <= 0) ||
1858                          (u = (int)((c = ctl) >>> 32)) >= 0 ||
1859                          (e = (int)c) <= 0 || m < (i = e & SMASK) ||

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines