test/java/util/concurrent/locks/ReentrantLock/TimeoutLockLoops.java

Print this page




  17  *
  18  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  19  * CA 95054 USA or visit www.sun.com if you need additional information or
  20  * have any questions.
  21  */
  22 
  23 /*
  24  * This file is available under and governed by the GNU General Public
  25  * License version 2 only, as published by the Free Software Foundation.
  26  * However, the following notice accompanied the original version of this
  27  * file:
  28  *
  29  * Written by Doug Lea with assistance from members of JCP JSR-166
  30  * Expert Group and released to the public domain, as explained at
  31  * http://creativecommons.org/licenses/publicdomain
  32  */
  33 
  34 /*
  35  * @test
  36  * @bug 4486658 5031862
  37  * @compile -source 1.5 TimeoutLockLoops.java
  38  * @run main TimeoutLockLoops
  39  * @summary Checks for responsiveness of locks to timeouts.
  40  * Runs under the assumption that ITERS computations require more than
  41  * TIMEOUT msecs to complete, which seems to be a safe assumption for
  42  * another decade.
  43  */
  44 
  45 import java.util.concurrent.*;
  46 import java.util.concurrent.locks.*;
  47 import java.util.*;
  48 
  49 public final class TimeoutLockLoops {
  50     static final ExecutorService pool = Executors.newCachedThreadPool();
  51     static final LoopHelpers.SimpleRandom rng = new LoopHelpers.SimpleRandom();
  52     static boolean print = false;
  53     static final int ITERS = Integer.MAX_VALUE;
  54     static final long TIMEOUT = 100;
  55 
  56     public static void main(String[] args) throws Exception {
  57         int maxThreads = 100;
  58         if (args.length > 0)




  17  *
  18  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  19  * CA 95054 USA or visit www.sun.com if you need additional information or
  20  * have any questions.
  21  */
  22 
  23 /*
  24  * This file is available under and governed by the GNU General Public
  25  * License version 2 only, as published by the Free Software Foundation.
  26  * However, the following notice accompanied the original version of this
  27  * file:
  28  *
  29  * Written by Doug Lea with assistance from members of JCP JSR-166
  30  * Expert Group and released to the public domain, as explained at
  31  * http://creativecommons.org/licenses/publicdomain
  32  */
  33 
  34 /*
  35  * @test
  36  * @bug 4486658 5031862


  37  * @summary Checks for responsiveness of locks to timeouts.
  38  * Runs under the assumption that ITERS computations require more than
  39  * TIMEOUT msecs to complete, which seems to be a safe assumption for
  40  * another decade.
  41  */
  42 
  43 import java.util.concurrent.*;
  44 import java.util.concurrent.locks.*;
  45 import java.util.*;
  46 
  47 public final class TimeoutLockLoops {
  48     static final ExecutorService pool = Executors.newCachedThreadPool();
  49     static final LoopHelpers.SimpleRandom rng = new LoopHelpers.SimpleRandom();
  50     static boolean print = false;
  51     static final int ITERS = Integer.MAX_VALUE;
  52     static final long TIMEOUT = 100;
  53 
  54     public static void main(String[] args) throws Exception {
  55         int maxThreads = 100;
  56         if (args.length > 0)