On Wed, 17 Jun 2026 21:12:52 GMT, ExE Boss <[email protected]> wrote: >> src/java.base/share/classes/java/lang/Thread.java line 469: >> >>> 467: case 0: break; >>> 468: default: throw new AssertionError(size); >>> 469: } >> >> This doesn't look right. This would at most zero 8 bytes of memory (just at >> different offsets). Is there a loop missing here? > > This switch has fallthrough, and the memory is limited to 64 bytes, or 8 > longs.
Ah, I didn't notice the fallthrough ------------- PR Review Comment: https://git.openjdk.org/jdk/pull/31365#discussion_r3431643485
