On Fri, 3 Jul 2026 15:43:33 GMT, Doug Lea <[email protected]> wrote: >> Changes signal filtering to avoid possible starvation > > Doug Lea has updated the pull request with a new target base due to a merge > or a rebase. The pull request now contains 144 commits: > > - Merge branch 'openjdk:master' into JDK-8373118 > - undo manual padding; filter signals on propagate > - manual padding > - Strengthen some orderings > - weaken an ordering for internal push; randomize lazySubmit > - Merge branch 'openjdk:master' into JDK-8373118 > - Better version of previous commit > - another set of activation tradeoffs > - More factoring/control experiments > - Merge branch 'openjdk:master' into JDK-8373118 > - ... and 134 more: https://git.openjdk.org/jdk/compare/79be204a...fc3f9261
src/java.base/share/classes/java/util/concurrent/ForkJoinPool.java line 1942: > 1940: break; > 1941: else > 1942: nc = ((v = w).stackPred & LMASK) | ((c + RC_UNIT) & > UMASK); @DougLea What's the reason for using `UMASK` here instead of `TC_MASK` as in signalWork? 🤔 ------------- PR Review Comment: https://git.openjdk.org/jdk/pull/28797#discussion_r3529600227
