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

Comparing jsr166/src/jdk8/java/util/concurrent/ForkJoinPool.java (file contents):
Revision 1.2 by dl, Sat Apr 2 13:38:38 2016 UTC vs.
Revision 1.3 by dl, Fri Apr 8 00:04:46 2016 UTC

# Line 1907 | Line 1907 | public class ForkJoinPool extends Abstra
1907                          a[(al - 1) & s] = task;
1908                          q.top = s + 1;        // relaxed writes OK here
1909                          q.phase = 0;
1910 <                        if (d < 0 && q.base - s < 0)
1910 >                        if (d < 0 && q.base - s < -1)
1911                              break;            // no signal needed
1912                      }
1913                      else

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines