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

Comparing jsr166/src/test/loops/FJSums.java (file contents):
Revision 1.3 by jsr166, Fri Oct 22 05:18:31 2010 UTC vs.
Revision 1.8 by jsr166, Sun Oct 21 06:14:12 2012 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/licenses/publicdomain
4 > * http://creativecommons.org/publicdomain/zero/1.0/
5   */
6  
7   import java.util.*;
# Line 14 | Line 14 | public class FJSums {
14      static final long NPS = (1000L * 1000 * 1000);
15      static int THRESHOLD;
16  
17 <    public static void main (String[] args) throws Exception {
17 >    public static void main(String[] args) throws Exception {
18          int procs = 0;
19          int n = 1 << 25;
20          int reps = 10;
# Line 24 | Line 24 | public class FJSums {
24              if (args.length > 1)
25                  n = Integer.parseInt(args[1]);
26              if (args.length > 2)
27 <                reps = Integer.parseInt(args[1]);
27 >                reps = Integer.parseInt(args[2]);
28          }
29          catch (Exception e) {
30              System.out.println("Usage: java FJSums threads n reps");
# Line 157 | Line 157 | public class FJSums {
157       * internal nodes, it becomes true when one child is cumulated.
158       * When second child finishes cumulating, it then moves up tree,
159       * executing complete() at the root.
160     *
160       */
161      static final class Cumulater extends ForkJoinTask<Void> {
162          static final short CUMULATE = (short)1;
# Line 276 | Line 275 | public class FJSums {
275      }
276  
277   }
279
280

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines