-
Notifications
You must be signed in to change notification settings - Fork 729
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make java.lang.Thread.container a known field #18460
Conversation
java.lang.Thread.container is added in vmconstantpool.xml. Accessing java.lang.Thread.container as a known field simplifies and fixes the incorrect error handling in getVirtualThreadState. Signed-off-by: Babneet Singh <[email protected]>
@gacholio Requesting your review. It resolves the issue with error handling. |
jenkins test sanity zlinux jdk21 |
CRIU failure unrelated to this change. @tajila Why are these failures not being excluded? |
Its a new test, we will exclude. |
@babsingh You'll need to triple deliver to 0.42 |
Why the 0.43 ports? |
0.43 is a Java 21 Jan refresh: https://github.com/eclipse-openj9/openj9/milestones. |
Is that not a placeholder branch that will be refreshed from master? I wasn't asked to port anything to 0.43. |
Anything that goes into 0.42 (Java 21.0.1 - the OpenJ9 GA) should also go into 0.43 which includes the 21.0.2 update. |
0.42 was a placeholder when we did M0, but since we branched Nov 14 for 0.42/0.43 M1 we need to start double/triple delivering. |
java.lang.Thread.container
is added invmconstantpool.xml
.Accessing
java.lang.Thread.container
as a known field simplifiesand fixes the incorrect error handling in
getVirtualThreadState
.