ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/loops/LeftSpineFib.java
(Generate patch)

Comparing jsr166/src/test/loops/LeftSpineFib.java (file contents):
Revision 1.2 by jsr166, Mon Sep 20 20:42:37 2010 UTC vs.
Revision 1.6 by jsr166, Thu Jan 15 18:34:19 2015 UTC

# Line 1 | Line 1
1 + /*
2 + * Written by Doug Lea with assistance from members of JCP JSR-166
3 + * Expert Group and released to the public domain, as explained at
4 + * http://creativecommons.org/publicdomain/zero/1.0/
5 + */
6  
7   import java.util.*;
8   import java.util.concurrent.*;
# Line 25 | Line 30 | public final class LeftSpineFib extends
30              return;
31          }
32  
28
33          for (int reps = 0; reps < 2; ++reps) {
34 <            ForkJoinPool g = procs == 0? new ForkJoinPool() :
34 >            ForkJoinPool g = (procs == 0) ? new ForkJoinPool() :
35                  new ForkJoinPool(procs);
36              //            g.setMaintainsParallelism(false);
37              lastStealCount = g.getStealCount();
# Line 66 | Line 70 | public final class LeftSpineFib extends
70          System.out.println();
71      }
72  
69
73      // Initialized with argument; replaced with result
74      int number;
75      LeftSpineFib next;
# Line 121 | Line 124 | public final class LeftSpineFib extends
124      }
125  
126   }
124

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines