We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e014e2e + 7398d9a commit 1690101Copy full SHA for 1690101
jcl/src/java.base/share/classes/java/lang/System.java
@@ -696,7 +696,11 @@ private static void ensureProperties(boolean isInitialization) {
696
697
/*[IF CRIU_SUPPORT]*/
698
initializedProperties.put("org.eclipse.openj9.criu.isCRIUCapable", "true"); //$NON-NLS-1$ //$NON-NLS-2$
699
- /*[ENDIF] CRIU_SUPPORT*/
+ // CRIU support is required by CRaC
700
+ /*[IF CRAC_SUPPORT]*/
701
+ initializedProperties.put("org.eclipse.openj9.criu.isCRaCCapable", "true"); //$NON-NLS-1$ //$NON-NLS-2$
702
+ /*[ENDIF] CRAC_SUPPORT */
703
+ /*[ENDIF] CRIU_SUPPORT */
704
705
String[] list = getPropertyList();
706
for (int i = 0; i < list.length; i += 2) {
0 commit comments