Add support for jdk.tracePinnedThreads system property - #18000
Merged
Conversation
fengxue-IS
force-pushed
the
tracePinned2
branch
2 times, most recently
from
August 23, 2023 04:12
ebd7a14 to
cfdf89f
Compare
Contributor
Author
|
Personal build on aarch64 passed extend.functional[with non-related failures] and sanity.openjdk. |
keithc-ca
reviewed
Aug 23, 2023
fengxue-IS
force-pushed
the
tracePinned2
branch
from
August 24, 2023 15:53
cfdf89f to
a26cdf9
Compare
fengxue-IS
marked this pull request as ready for review
August 24, 2023 16:12
keithc-ca
requested changes
Aug 24, 2023
fengxue-IS
force-pushed
the
tracePinned2
branch
3 times, most recently
from
August 28, 2023 18:24
6623ba5 to
c5cdf8c
Compare
keithc-ca
requested changes
Aug 28, 2023
fengxue-IS
force-pushed
the
tracePinned2
branch
from
September 7, 2023 19:24
c5cdf8c to
d1eaaf6
Compare
keithc-ca
requested changes
Sep 7, 2023
- New internal StackWalker flag J9_GET_MONITORS to include monitor entry info into StackFramesImpl structure. - New protected getMonitors() API to retrieve monitor entry info. - Fix StackWalker class keyword ordering If the new StackWalker flag is set, the monitor info will be fetched before parsing each stackframe and monitors will be added to the matching StackFrameImpl structure's monitors array based on stack depth. This will be used by PinnedThreadPrinter class to output the stack's acquired monitors' state. Signed-off-by: Jack Lu <Jack.S.Lu@ibm.com>
fengxue-IS
force-pushed
the
tracePinned2
branch
from
September 12, 2023 18:25
d1eaaf6 to
b8cfdc3
Compare
Contributor
|
Jenkins compile amac jdk17 |
Contributor
|
Jenkins test extended.functional,sanity.openjdk xlinux jdk21 |
Contributor
|
The extended.functional tests failed: Re-running in grinders: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
If the new StackWalker flag is set, the monitor info will be fetched before parsing each stackframe and monitors will be added to the matching StackFrameImpl structure's monitors array based on stack depth. This will be used by PinnedThreadPrinter class to output the stack's acquired monitors' state.