On Mon, 23 Mar 2026 12:59:59 GMT, Doug Lea <[email protected]> wrote:
>> Changes signal filtering to avoid possible starvation
>
> Doug Lea has updated the pull request incrementally with two additional
> commits since the last revision:
>
> - Merge remote-tracking branch 'refs/remotes/origin/JDK-8373118' into
> JDK-8373118
> - Initial version of delegated lock redesign
src/java.base/share/classes/java/util/concurrent/DelayScheduler.java line 186:
> 184: if ((ss = sstate) < 0)
> 185: break outer;
> 186: else if (((ss = sstate) & BUSY) == 0) {
@DougLea Seems unnecessary to re-read `sstate` since it is read in the previous
branch?
-------------
PR Review Comment: https://git.openjdk.org/jdk/pull/28797#discussion_r2975824155