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.89 by dl, Wed Nov 24 10:50:38 2010 UTC vs.
Revision 1.90 by jsr166, Mon Nov 29 20:58:06 2010 UTC

# Line 1031 | Line 1031 | public class ForkJoinPool extends Abstra
1031       */
1032      final void awaitJoin(ForkJoinTask<?> joinMe, ForkJoinWorkerThread worker,
1033                           boolean timed, long nanos) {
1034 <        long startTime = timed? System.nanoTime() : 0L;
1034 >        long startTime = timed ? System.nanoTime() : 0L;
1035          int retries = 2 + (parallelism >> 2); // #helpJoins before blocking
1036          boolean running = true;               // false when count decremented
1037          while (joinMe.status >= 0) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines