comparison src/share/vm/gc_implementation/g1/g1CollectorPolicy.hpp @ 18041:52b4284cb496

Merge with jdk8u20-b26
author Gilles Duboscq <duboscq@ssw.jku.at>
date Wed, 15 Oct 2014 16:02:50 +0200
parents 4ca6dc0799b6 cfd4aac53239
children 7848fc12602b
comparison
equal deleted inserted replaced
17606:45d7b2c7029d 18041:52b4284cb496
818 _short_lived_surv_rate_group->finished_recalculating_age_indexes(); 818 _short_lived_surv_rate_group->finished_recalculating_age_indexes();
819 } 819 }
820 // do that for any other surv rate groups 820 // do that for any other surv rate groups
821 } 821 }
822 822
823 size_t young_list_target_length() const { return _young_list_target_length; }
824
823 bool is_young_list_full() { 825 bool is_young_list_full() {
824 uint young_list_length = _g1->young_list()->length(); 826 uint young_list_length = _g1->young_list()->length();
825 uint young_list_target_length = _young_list_target_length; 827 uint young_list_target_length = _young_list_target_length;
826 return young_list_length >= young_list_target_length; 828 return young_list_length >= young_list_target_length;
827 } 829 }