ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/loops/NoopMutex.java
Revision: 1.4
Committed: Mon Aug 10 06:41:42 2015 UTC (8 years, 8 months ago) by jsr166
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +0 -0 lines
State: FILE REMOVED
Log Message:
Rename NoopMutex.java to NoopSpin100M.java to match class name

File Contents

# Content
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/publicdomain/zero/1.0/
5 */
6
7 import java.util.concurrent.atomic.*;
8
9 class NoopSpin100M {
10 public static void main(String[] args) throws Exception {
11 AtomicInteger lock = new AtomicInteger();
12 for (int i = 100000000; i > 0; --i) {
13 lock.compareAndSet(0,1);
14 lock.set(0);
15 }
16 }
17 }