Skip to content

Commit 075dc48

Browse files
committed
TESTING: try to further improve on footprint.
1 parent 3503a6d commit 075dc48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

substratevm/src/com.oracle.svm.core.genscavenge/src/com/oracle/svm/core/genscavenge/AdaptiveCollectionPolicy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ abstract class AdaptiveCollectionPolicy extends AbstractCollectionPolicy {
9999
static final int NEW_RATIO = 2; // HotSpot: -XX:NewRatio
100100
static final int LARGE_MEMORY_MAX_HEAP_PERCENT = 25; // -XX:MaxRAMPercentage
101101
static final int SMALL_MEMORY_MAX_HEAP_PERCENT = 50; // -XX:MinRAMPercentage
102-
static final double INITIAL_HEAP_MEMORY_PERCENT = 1.5625; // -XX:InitialRAMPercentage
102+
static final double INITIAL_HEAP_MEMORY_PERCENT = 1; // -XX:InitialRAMPercentage, default 1.5625
103103

104104
private final Timer minorTimer = new Timer("minor/between minor");
105105
private final AdaptiveWeightedAverage avgMinorGcCost = new AdaptiveWeightedAverage(ADAPTIVE_TIME_WEIGHT);

0 commit comments

Comments
 (0)