Skip to content

Commit

Permalink
Add a new feature CRAC (adoptium#487)
Browse files Browse the repository at this point in the history
Currently CRAC is set as CRIU when the system property
org.eclipse.openj9.criu.isCRIUCapable is true.

Signed-off-by: Jason Feng <[email protected]>
  • Loading branch information
JasonFengJ9 authored Jan 10, 2024
1 parent e2e6137 commit dc7287a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/org/openj9/envInfo/JavaInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ public void checkCRIU() {
String isCRIUCapable = System.getProperty("org.eclipse.openj9.criu.isCRIUCapable");
if ((isCRIUCapable != null) && isCRIUCapable.equals("true")) {
detectedTfs.add("CRIU");
detectedTfs.add("CRAC");
}
}

Expand Down

0 comments on commit dc7287a

Please sign in to comment.