ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/loops/NoopMutex.java
Revision: 1.3
Committed: Tue Mar 15 19:47:05 2011 UTC (13 years, 2 months ago) by jsr166
Branch: MAIN
CVS Tags: release-1_7_0
Changes since 1.2: +1 -1 lines
Log Message:
Update Creative Commons license URL in legal notices

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 }