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.146 by dl, Mon Nov 19 18:12:42 2012 UTC vs.
Revision 1.147 by jsr166, Tue Nov 20 05:18:42 2012 UTC

# Line 2480 | Line 2480 | public class ForkJoinPool extends Abstra
2480              throw new IllegalArgumentException();
2481          this.factory = factory;
2482          this.ueh = handler;
2483 <        this.config = parallelism | (asyncMode? (FIFO_QUEUE << 16) : 0);
2483 >        this.config = parallelism | (asyncMode ? (FIFO_QUEUE << 16) : 0);
2484          long np = (long)(-parallelism); // offset ctl counts
2485          this.ctl = ((np << AC_SHIFT) & AC_MASK) | ((np << TC_SHIFT) & TC_MASK);
2486          int pn = nextPoolId();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines