Re: RFR: 8283147: Include NonJavaThread stacktrace during thread dump [v3]

2022-03-15 Thread Yi Yang
> When we use jcmd Thread.dump/jstack , we could dump all Java > thread stack trace, but unfortunately we are not able to print NonJavaThread > stack trace such as VMThread/GCWorker, etc. For these threads, we know > nothing about what are they doing/are they blocked in pthread condition from

RFR: 8283147: Include NonJavaThread stacktrace during thread dump

2022-03-15 Thread Yi Yang
When we use jcmd Thread.dump/jstack , we could dump all Java thread stack trace, but unfortunately we are not able to print NonJavaThread stack trace such as VMThread/GCWorker, etc. For these threads, we know nothing about what are they doing/are they blocked in pthread condition from jstack

Re: RFR: 8283147: Include NonJavaThread stacktrace during thread dump [v2]

2022-03-15 Thread Yi Yang
> When we use jcmd Thread.dump/jstack , we could dump all Java > thread stack trace, but unfortunately we are not able to print NonJavaThread > stack trace such as VMThread/GCWorker, etc. For these threads, we know > nothing about what are they doing/are they blocked in pthread condition from

RFR: 8283092: JMX subclass permission check redundant with strong encapsulation

2022-03-15 Thread Kevin Walls
Removing permission checks which, in the presence of a Security Manager, would check for a RuntimePermission "className.subclass". This was to prevent subclassing these classes, but is no longer necessary with strong encapsulation from modules. - Commit messages: - 8283092: JMX