src/share/vm/runtime/commandLineFlagConstraintsGC.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 8112746 Cdiff src/share/vm/runtime/commandLineFlagConstraintsGC.hpp

src/share/vm/runtime/commandLineFlagConstraintsGC.hpp

Print this page

        

*** 32,60 **** * Here we have GC arguments constraints functions, which are called automatically * whenever flag's value changes. If the constraint fails the function should return * an appropriate error value. */ ! Flag::Error YoungPLABSizeConstraintFunc(bool verbose, size_t* value); ! Flag::Error MinHeapFreeRatioConstraintFunc(bool verbose, uintx* value); ! Flag::Error MaxHeapFreeRatioConstraintFunc(bool verbose, uintx* value); ! Flag::Error MinMetaspaceFreeRatioConstraintFunc(bool verbose, uintx* value); ! Flag::Error MaxMetaspaceFreeRatioConstraintFunc(bool verbose, uintx* value); ! Flag::Error InitialTenuringThresholdConstraintFunc(bool verbose, uintx* value); ! Flag::Error MaxTenuringThresholdConstraintFunc(bool verbose, uintx* value); #if INCLUDE_ALL_GCS ! Flag::Error G1NewSizePercentConstraintFunc(bool verbose, uintx* value); ! Flag::Error G1MaxNewSizePercentConstraintFunc(bool verbose, uintx* value); #endif // INCLUDE_ALL_GCS ! Flag::Error CMSOldPLABMinConstraintFunc(bool verbose, size_t* value); ! Flag::Error CMSPrecleanDenominatorConstraintFunc(bool verbose, uintx* value); ! Flag::Error CMSPrecleanNumeratorConstraintFunc(bool verbose, uintx* value); ! Flag::Error SurvivorAlignmentInBytesConstraintFunc(bool verbose, intx* value); #endif /* SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTSGC_HPP */ --- 32,60 ---- * Here we have GC arguments constraints functions, which are called automatically * whenever flag's value changes. If the constraint fails the function should return * an appropriate error value. */ ! Flag::Error YoungPLABSizeConstraintFunc(bool verbose, size_t value); ! Flag::Error MinHeapFreeRatioConstraintFunc(bool verbose, uintx value); ! Flag::Error MaxHeapFreeRatioConstraintFunc(bool verbose, uintx value); ! Flag::Error MinMetaspaceFreeRatioConstraintFunc(bool verbose, uintx value); ! Flag::Error MaxMetaspaceFreeRatioConstraintFunc(bool verbose, uintx value); ! Flag::Error InitialTenuringThresholdConstraintFunc(bool verbose, uintx value); ! Flag::Error MaxTenuringThresholdConstraintFunc(bool verbose, uintx value); #if INCLUDE_ALL_GCS ! Flag::Error G1NewSizePercentConstraintFunc(bool verbose, uintx value); ! Flag::Error G1MaxNewSizePercentConstraintFunc(bool verbose, uintx value); #endif // INCLUDE_ALL_GCS ! Flag::Error CMSOldPLABMinConstraintFunc(bool verbose, size_t value); ! Flag::Error CMSPrecleanDenominatorConstraintFunc(bool verbose, uintx value); ! Flag::Error CMSPrecleanNumeratorConstraintFunc(bool verbose, uintx value); ! Flag::Error SurvivorAlignmentInBytesConstraintFunc(bool verbose, intx value); #endif /* SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTSGC_HPP */
src/share/vm/runtime/commandLineFlagConstraintsGC.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File