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

Comparing jsr166/src/test/loops/OfferPollLoops.java (file contents):
Revision 1.4 by dl, Sun Sep 19 12:55:37 2010 UTC vs.
Revision 1.9 by jsr166, Mon Aug 10 03:13:33 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/licenses/publicdomain
4 > * http://creativecommons.org/publicdomain/zero/1.0/
5   */
6  
7   import java.util.*;
# Line 54 | Line 54 | public class OfferPollLoops {
54  
55          warmup();
56          print = true;
57 <        int k = 1;
58 <        for (int i = 1; i <= maxN;) {
57 >        for (int k = 1, i = 1; i <= maxN;) {
58              System.out.println("Pairs:" + i);
59              oneTest(i, ITERS);
60              if (i == k) {
# Line 126 | Line 125 | public class OfferPollLoops {
125              System.out.print("ArrayBlockingQueue      ");
126          oneRun(new ArrayBlockingQueue<Integer>(POOL_SIZE), n, iters);
127  
129
128          Thread.sleep(100); // System.gc();
129          if (print)
130              System.out.print("PriorityBlockingQueue   ");
# Line 136 | Line 134 | public class OfferPollLoops {
134          if (print)
135              System.out.print("ArrayBlockingQueue(fair)");
136          oneRun(new ArrayBlockingQueue<Integer>(POOL_SIZE, true), n, fairIters);
139
137      }
138  
139 <    static abstract class Stage implements Runnable {
139 >    abstract static class Stage implements Runnable {
140          final int iters;
141          final Queue<Integer> queue;
142          final CyclicBarrier barrier;
# Line 237 | Line 234 | public class OfferPollLoops {
234              System.out.println("\t: " + LoopHelpers.rightJustify(time / (iters * n)) + " ns per transfer");
235      }
236  
240
237   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines