< prev index next >

src/share/vm/gc/g1/g1DefaultPolicy.hpp

Print this page

        

*** 62,71 **** --- 62,73 ---- GCPolicyCounters* _policy_counters; double _full_collection_start_sec; + jlong _full_collection_end_millis; + uint _young_list_target_length; uint _young_list_fixed_length; // The max number of regions we can extend the eden by while the GC // locker is active. This should be >= _young_list_target_length;
*** 235,244 **** --- 237,248 ---- uint calc_min_old_cset_length() const; uint calc_max_old_cset_length() const; double reclaimable_bytes_perc(size_t reclaimable_bytes) const; + jlong full_collection_end_millis() { return _full_collection_end_millis; } + private: // Sets up marking if proper conditions are met. void maybe_start_marking(); // The kind of STW pause.
< prev index next >