< prev index next >

src/hotspot/share/gc/shared/gc_globals.hpp

Print this page
rev 50604 : Added periodic gc feature to G1 gc.
rev 50605 : Updated patch.

*** 814,821 **** "Delay between expansion and allocation (in milliseconds)") \ \ product(uintx, GCDrainStackTargetSize, 64, \ "Number of entries we will try to leave on the stack " \ "during parallel gc") \ ! range(0, max_juint) #endif // SHARE_GC_SHARED_GC_GLOBALS_HPP --- 814,839 ---- "Delay between expansion and allocation (in milliseconds)") \ \ product(uintx, GCDrainStackTargetSize, 64, \ "Number of entries we will try to leave on the stack " \ "during parallel gc") \ ! range(0, max_juint) \ ! \ ! manageable(uintx, GCFrequency, 0, \ ! "Number of seconds to wait before triggering a full gc. Use zero" \ ! "to disable periodic enforced gc cycles.") \ ! \ ! product(bool, UseFullGCForIdleCompaction, false, \ ! "Force a Full GC when Idle Compaction is triggered.") \ ! \ ! manageable(uintx, MaxLoadGC, 0, \ ! "Max CPU usage that should still trigger periodic GCs. Above" \ ! "this value, no periodic GC will not be triggered.") \ ! \ ! manageable(uintx, MaxOverCommittedMem, 0, \ ! "Max difference between current heap capacity and the current" \ ! "heap usage that does not trigger a periodic GC.") \ ! \ ! manageable(uintx, MinCommittedMem, 0, \ ! "Min heap size that does not trigger a periodic GC.") \ #endif // SHARE_GC_SHARED_GC_GLOBALS_HPP
< prev index next >