[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:
panos-kakos
2023-04-03 20:27:36 +03:00
committed by GitHub
parent 38ae7e56dd
commit 5c520fc768
3 changed files with 20 additions and 10 deletions
@@ -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) {