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

Comparing jsr166/src/test/loops/CheckedLockLoops.java (file contents):
Revision 1.7 by jsr166, Mon Sep 27 19:15:15 2010 UTC vs.
Revision 1.13 by jsr166, Sat Dec 31 22:17:40 2016 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   * @test
8   * @summary basic safety and liveness of ReentrantLocks, and other locks based on them
9   */
10  
11 < import java.util.concurrent.*;
12 < import java.util.concurrent.locks.*;
13 < import java.util.*;
11 > import java.util.concurrent.CyclicBarrier;
12 > import java.util.concurrent.ExecutorService;
13 > import java.util.concurrent.Executors;
14 > import java.util.concurrent.Semaphore;
15 > import java.util.concurrent.locks.Lock;
16 > import java.util.concurrent.locks.ReentrantLock;
17 > import java.util.concurrent.locks.ReentrantReadWriteLock;
18  
19   public final class CheckedLockLoops {
20      static final ExecutorService pool = Executors.newCachedThreadPool();
# Line 31 | Line 35 | public final class CheckedLockLoops {
35  
36      static void runTest(int maxThreads, int iters) throws Exception {
37          print = true;
38 <        int k = 1;
35 <        for (int i = 1; i <= maxThreads;) {
38 >        for (int k = 1, i = 1; i <= maxThreads;) {
39              System.out.println("Threads:" + i);
40              oneTest(i, iters / i);
41              if (i == k) {
# Line 399 | Line 402 | public final class CheckedLockLoops {
402  
403      }
404  
402
405      private static class FairReentrantReadWriteLockLoop extends LockLoop {
406          private final ReentrantReadWriteLock lock = new ReentrantReadWriteLock(true);
407          final int loop(int n) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines