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

Comparing jsr166/src/main/java/util/concurrent/ForkJoinPool.java (file contents):
Revision 1.310 by dl, Sat Apr 2 13:38:34 2016 UTC vs.
Revision 1.311 by dl, Fri Apr 8 00:04:42 2016 UTC

# Line 1895 | Line 1895 | public class ForkJoinPool extends Abstra
1895                          a[(al - 1) & s] = task;
1896                          q.top = s + 1;        // relaxed writes OK here
1897                          q.phase = 0;
1898 <                        if (d < 0 && q.base - s < 0)
1898 >                        if (d < 0 && q.base - s < -1)
1899                              break;            // no signal needed
1900                      }
1901                      else

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines