-
Notifications
You must be signed in to change notification settings - Fork 41
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
Fix 0.42 to have correct M1 content #74
Merged
Merged
Conversation
This file contains 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
Related to: eclipse-openj9/openj9#16659 Signed-off-by: tajila <[email protected]>
Clear vmthread from thread object at shutdown
Ensure the time compensation in milliseconds is not less than the checkpoint restore time delta. Signed-off-by: Jason Feng <[email protected]>
Ensures time compensation is not less than checkpointRestoreTimeDelta
Add the exception to avoid warnings in builds while waiting for the changes to show up from OpenJDK. See https://bugs.openjdk.org/browse/JDK-8313312 Signed-off-by: Peter Shipton <[email protected]>
Backport "Classpath" exception for some riscv64 files from head stream
…errupt status Reviewed-by: rpressler, dholmes, jpai
…d be replaced Reviewed-by: aturbanov, shade, dfuchs
…ore thawing Reviewed-by: pchilanomate, mgronlun, sspitsyn
Reviewed-by: lmesnik, amenkov
…ED_WAITING virtual thread is timed parked Reviewed-by: sspitsyn, rpressler
Reviewed-by: mli, sspitsyn
Signed-off-by: Keith W. Campbell <[email protected]>
Backport Virtual Thread Changes from JDK-next
ParkALot launches a number of virtual threads and expects each thread to park and unpark 500_000 times. The test takes a lot of time to execute, leading to timeouts in Jenkins testing. The number of park and unpark iterations is reduced to 5_000, which is sufficient to verify functional behaviour. Further, the reduced iterations allow the test to pass in a reasonable time in Jenkins testing. vm.debug is set to false for OpenJ9. So, the vm.debug=true variant is left unmodified. Related: eclipse-openj9/openj9#18444 Signed-off-by: Babneet Singh <[email protected]>
Reduce the number of park and unpark iterations in ParkALot
Port to Java 21 from ibmruntimes/openj9-openjdk-jdk8#705 Signed-off-by: Theresa Mammarella <[email protected]>
Neither of these is used anywhere: INCLUDE_CUSTOM_EXTENSION_SYMBOLS INCLUDE_CUSTOM_EXTENSION_LIB Also remove redundant '-c' from CFLAGS. Signed-off-by: Keith W. Campbell <[email protected]>
Remove definitions of unused make macros
Adjust ThreadListStackTracesTest for checkReentrantLock to be ready when the virtual thread state is WAITING after the reentrant lock parks the virtual thread. When the virtual thread is mounted, the virtual thread state, which is obtained from the carrier thread, can transition between WAITING and RUNNABLE before the virtual thread is parked on the lock. Issue: eclipse-openj9/openj9#18089 Signed-off-by: Amarpreet Singh <[email protected]>
Signed-off-by: Jason Feng <[email protected]>
Adjust ThreadListStackTracesTest for checkReentrantLock
CRIU adds @NotCheckpointSafe for PrintStream.writeln(String)
Append cp to annotation data to fix redefinition inconsistencies
Signed-off-by: Jason Feng <[email protected]>
Add PrintStream.java to $(SUPPORT_OUTPUTDIR)/overlay
@tajila fyi |
JasonFengJ9
approved these changes
Nov 22, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
JasonFengJ9
merged commit Nov 22, 2023
0c32793
into
ibmruntimes:v0.42.0-release
1 of 2 checks passed
@babsingh fyi |
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.
0.42 (and 0.43) were accidentally branched from an old commit, missing changes that should have been included. Subsequently a number of changes were double delivered. Re-sync to include missing commits.
Since most of the changes were double delivered, this is really only adding the following missing changes. It also adds the original commits for changes that were double delivered, so they won't show up as diffs in comparisons any more.
Clear vmthread from thread object at shutdown
Ensures time compensation is not less than checkpointRestoreTimeDelta
Backport "Classpath" exception for some riscv64 files from head stream