View Javadoc

1   // AtomicLong.java, created Aug 9, 2003 3:47:06 AM by John Whaley
2   // Copyright (C) 2003 John Whaley
3   // Licensed under the terms of the GNU LGPL; see COPYING for details.
4   package joeq.ClassLib.Common.sun.misc;
5   
6   /***
7    * AtomicLong
8    * 
9    * @author John Whaley
10   * @version $Id: AtomicLong.java 1451 2004-03-09 06:27:08Z jwhaley $
11   */
12  abstract class AtomicLong {
13      private static boolean VMSupportsCS8() {
14          return false;
15      }
16  }