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

Comparing jsr166/src/jsr166e/ForkJoinPool.java (file contents):
Revision 1.26 by dl, Sat Dec 8 14:08:44 2012 UTC vs.
Revision 1.27 by jsr166, Sat Dec 8 20:49:24 2012 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines