SyncTest.java 840 Bytes
Newer Older
Jeff Sturm committed
1 2 3 4 5
// Test atomic increment via synchronized blocks.
public class SyncTest implements Runnable {
  static int counter;

  public void run() {
6 7 8
    // We cache the .class value; otherwise this code is
    // slow enough that it will time out in some situations.
    Object lock = SyncTest.class;
Jeff Sturm committed
9
    for (int n = 0; n < 1000000; n++)
10
      synchronized (lock) {
Jeff Sturm committed
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
        counter++;
      }
  }

  public static void main(String[] args) {
    SyncTest test = new SyncTest();
    Thread[] thr = new Thread[4];

    for (int n = 0; n < thr.length; n++) {
      thr[n] = new Thread(test);
      thr[n].start();
    }

    for (int n = 0; n < thr.length; n++) {
      try {
        thr[n].join();
      } catch (InterruptedException ex) {
      }
    }

    System.out.println(counter == 1000000 * thr.length ?
      "ok" : "fail: " + counter);
  }
}