-
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
[FFI/Jtreg_JDK22] Change the value of the heap address identifier #19002
[FFI/Jtreg_JDK22] Change the value of the heap address identifier #19002
Conversation
The fix has been verified in FFI related test suites in OpenJ9/Jtreg. |
Reviewer: @TobiAjila |
jcl/src/java.base/share/classes/openj9/internal/foreign/abi/InternalDowncallHandler.java
Outdated
Show resolved
Hide resolved
5d52c38
to
507c6f6
Compare
jenkins test sanity.openjdk amac jdk22 |
0273447
to
1fa4d45
Compare
The tiny changes modify the constant used to identify the heap address in downcall to avoid any potential conflict with the address value passed to downcall. Fixes: eclipse-openj9#18999 Signed-off-by: ChengJin01 <[email protected]>
1fa4d45
to
3eff02b
Compare
For the record, the build that was underway is https://openj9-jenkins.osuosl.org/job/PullRequest-OpenJ9/5127. |
Just an unrelated known failure in the PR testing. Grinder testing java/foreign/TestAddressDereference.java |
Pls create the PR to unexclude the test. |
The changes enable the heap related test suites in JDK22+ given the problems with the tests are resolved via: [1] eclipse-openj9/openj9#18930 [2] eclipse-openj9/openj9#19002 Signed-off-by: ChengJin01 <[email protected]>
PR is created at adoptium/aqa-tests#5093. |
jenkins compile amac jdk22 |
The changes enable the heap related test suites in JDK22+ given the problems with the tests are resolved via: [1] eclipse-openj9/openj9#18930 [2] eclipse-openj9/openj9#19002 Signed-off-by: ChengJin01 <[email protected]>
The tiny changes modify the constant used to
identify the heap address in downcall to avoid
any potential conflict with the address value
passed to downcall.
Fixes: #18999
Signed-off-by: ChengJin01 [email protected]