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

Comparing jsr166/src/test/loops/PhaserLoops.java (file contents):
Revision 1.4 by jsr166, Tue Mar 15 19:47:05 2011 UTC vs.
Revision 1.7 by jsr166, Thu Jan 15 18:34:19 2015 UTC

# Line 8 | Line 8 | import java.util.*;
8   import java.util.concurrent.*;
9   //import jsr166y.*;
10  
11 < /*
11 > /**
12   * Based loosely on Java Grande Forum barrierBench
13   */
14
14   public class PhaserLoops {
15      static final int NCPUS = Runtime.getRuntime().availableProcessors();
16      static final ExecutorService pool = Executors.newCachedThreadPool();
# Line 31 | Line 30 | public class PhaserLoops {
30              phaser.register();
31          }
32  
34
33          public void run() {
34              int n = size;
35              Phaser b = phaser;
# Line 57 | Line 55 | public class PhaserLoops {
55                      actions[i] = new PhaserAction(i, phaser, size);
56                  }
57  
58 <                Future[] futures = new Future[k];
58 >                Future<?>[] futures = new Future<?>[k];
59                  for (int i = 0; i < k; ++i) {
60                      futures[i] = pool.submit(actions[i]);
61                  }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines