# HG changeset patch # User brutisso # Date 1458136928 -3600 # Wed Mar 16 15:02:08 2016 +0100 # Node ID e262dc6298aad0d939cdf83afb094b75e0a2e152 # Parent c4b391039f9f7b1e6b47d09d62ff7e5bd7357331 [mq]: MaxGCPauseMillis diff --git a/src/share/vm/runtime/globals.hpp b/src/share/vm/runtime/globals.hpp --- a/src/share/vm/runtime/globals.hpp +++ b/src/share/vm/runtime/globals.hpp @@ -2212,10 +2212,10 @@ "Decay factor to TenuredGenerationSizeIncrement") \ range(1, max_uintx) \ \ - product(uintx, MaxGCPauseMillis, max_uintx, \ + product(uintx, MaxGCPauseMillis, max_uintx - 1, \ "Adaptive size policy maximum GC pause time goal in millisecond, "\ "or (G1 Only) the maximum GC time per MMU time slice") \ - range(1, max_uintx) \ + range(1, max_uintx - 1) \ constraint(MaxGCPauseMillisConstraintFunc,AfterMemoryInit) \ \ product(uintx, GCPauseIntervalMillis, 0, \