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

Comparing jsr166/src/test/loops/ConcurrentQueueLoops.java (file contents):
Revision 1.12 by jsr166, Tue Mar 15 19:47:05 2011 UTC vs.
Revision 1.16 by jsr166, Thu Dec 18 18:43:22 2014 UTC

# Line 21 | Line 21 | public class ConcurrentQueueLoops {
21      public static void main(String[] args) throws Exception {
22          int maxStages = 100;
23          int work = 1024;
24 <        Class klass = null;
24 >        Class<?> klass = null;
25          if (args.length > 0) {
26              try {
27                  klass = Class.forName(args[0]);
# Line 50 | Line 50 | public class ConcurrentQueueLoops {
50          Thread.sleep(100);
51          print = true;
52  
53 <        int k = 1;
54 <        for (int i = 1; i <= maxStages;) {
53 >        for (int k = 1, i = 1; i <= maxStages;) {
54              oneRun(klass, i);
55              if (i == k) {
56                  k = i << 1;
# Line 61 | Line 60 | public class ConcurrentQueueLoops {
60                  i = k;
61          }
62          pool.shutdown();
63 <   }
63 >    }
64  
65      static final class Stage implements Callable<Integer> {
66          final Queue<Integer> queue;
# Line 76 | Line 75 | public class ConcurrentQueueLoops {
75          static int compute(int l) {
76              if (l == 0)
77                  return (int) System.nanoTime();
78 <            int nn =  (l >>> 7) & workMask;
78 >            int nn = (l >>> 7) & workMask;
79              while (nn-- > 0)
80                  l = LoopHelpers.compute6(l);
81              return l;
# Line 117 | Line 116 | public class ConcurrentQueueLoops {
116          }
117      }
118  
119 <    static void oneRun(Class klass, int n) throws Exception {
119 >    static void oneRun(Class<?> klass, int n) throws Exception {
120          Queue<Integer> q = (Queue<Integer>) klass.newInstance();
121          LoopHelpers.BarrierTimer timer = new LoopHelpers.BarrierTimer();
122          CyclicBarrier barrier = new CyclicBarrier(n + 1, timer);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines