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.67 by jsr166, Wed Sep 1 03:32:03 2010 UTC vs.
Revision 1.68 by jsr166, Wed Sep 1 06:40:12 2010 UTC

# Line 157 | Line 157 | public class ForkJoinPool extends Abstra
157       *      links to try to find such a task.
158       *
159       *   Compensating: Unless there are already enough live threads,
160 <     *      method helpMaintainParallelism() may create or or
160 >     *      method helpMaintainParallelism() may create or
161       *      re-activate a spare thread to compensate for blocked
162       *      joiners until they unblock.
163       *
# Line 318 | Line 318 | public class ForkJoinPool extends Abstra
318       * exactly #parallelism threads running, which is an impossible
319       * task. We always need to create one when the number of running
320       * threads would become zero and all workers are busy. Beyond
321 <     * this, we must rely on heuristics that work well in the the
322 <     * presence of transients phenomena such as GC stalls, dynamic
321 >     * this, we must rely on heuristics that work well in the
322 >     * presence of transient phenomena such as GC stalls, dynamic
323       * compilation, and wake-up lags. These transients are extremely
324       * common -- we are normally trying to fully saturate the CPUs on
325       * a machine, so almost any activity other than running tasks
# Line 985 | Line 985 | public class ForkJoinPool extends Abstra
985                      w.lastEventCount = ec;     // no need to wait
986                      break;
987                  }
988 <                else if (!(inactivate |= active))  
988 >                else if (!(inactivate |= active))
989                      eventSync(w, wec);         // must inactivate before sync
990              }
991              else

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines