[JAVA-18144] Moved jmh module to jdk9-and-above profile (#13725)
* [JAVA-18144] Moved jmh module to jdk9-and-above profile * [JAVA-18144] Added configuration * [JAVA-18144] Upgraded dependencies * [JAVA-18144] Added compile argument
This commit is contained in:
@@ -88,7 +88,7 @@ abstract class Striped64 extends Number {
|
||||
* JVM intrinsics note: It would be possible to use a release-only
|
||||
* form of CAS here, if it were provided.
|
||||
*/
|
||||
@sun.misc.Contended static final class Cell {
|
||||
@jdk.internal.vm.annotation.Contended static final class Cell {
|
||||
volatile long value;
|
||||
Cell(long x) { value = x; }
|
||||
final boolean cas(long cmp, long val) {
|
||||
|
||||
Reference in New Issue
Block a user