RFR: 7904028: jcstress: Address s.m.Unsafe use warnings which fail build on JDK 23+ [v2]

Pavel Rappo prappo at openjdk.org
Thu Jun 19 09:06:25 UTC 2025


> Here I propose a simple, symptomatic solution to fix build failures on JDK 23+ caused by treating "deprecated for removal" warnings as errors.
> 
> In the patch, I tried to keep the scope of `@SuppressWarnings` to a minimum. However, in a few cases I had to broaden it. This is because this annotation cannot be applied to a static initializer or an assignment within it.
> 
> Instead of extracting code into methods for the sake of annotating those, I annotated the smallest annotatable outer element, which was the top-level class. For example, see: `UnsafeBusyLoopTest`, `UnsafeAddLong1`, `UnsafeAddLong42`. 
> 
> I note that in JBS @shipilev suggested another approach to address the warnings. Namely, to move from `Unsafe` to `VarHandle`. However, such an approach is beyond my competence. And if chosen, it should be done by someone else. Thanks.

Pavel Rappo has updated the pull request with a new target base due to a merge or a rebase. The pull request now contains two commits:

 - Merge branch 'master' into CODETOOLS-7904028
 - Initial commit

-------------

Changes: https://git.openjdk.org/jcstress/pull/165/files
  Webrev: https://webrevs.openjdk.org/?repo=jcstress&pr=165&range=01
  Stats: 18 lines in 8 files changed: 18 ins; 0 del; 0 mod
  Patch: https://git.openjdk.org/jcstress/pull/165.diff
  Fetch: git fetch https://git.openjdk.org/jcstress.git pull/165/head:pull/165

PR: https://git.openjdk.org/jcstress/pull/165


More information about the jcstress-dev mailing list