src/share/vm/gc_implementation/g1/g1CollectorPolicy.hpp

changeset 3114
20213c8a3c40
parent 3066
ae73da50be4b
child 3119
4f41766176cf
     1.1 --- a/src/share/vm/gc_implementation/g1/g1CollectorPolicy.hpp	Tue Sep 06 21:03:51 2011 -0700
     1.2 +++ b/src/share/vm/gc_implementation/g1/g1CollectorPolicy.hpp	Wed Sep 07 12:21:23 2011 -0400
     1.3 @@ -493,7 +493,6 @@
     1.4  
     1.5    // </NEW PREDICTION>
     1.6  
     1.7 -public:
     1.8    void cset_regions_freed() {
     1.9      bool propagate = _last_young_gc_full && !_in_marking_window;
    1.10      _short_lived_surv_rate_group->all_surviving_words_recorded(propagate);
    1.11 @@ -1045,7 +1044,7 @@
    1.12    // new cycle, as long as we are not already in one. It's best if it
    1.13    // is called during a safepoint when the test whether a cycle is in
    1.14    // progress or not is stable.
    1.15 -  bool force_initial_mark_if_outside_cycle();
    1.16 +  bool force_initial_mark_if_outside_cycle(GCCause::Cause gc_cause);
    1.17  
    1.18    // This is called at the very beginning of an evacuation pause (it
    1.19    // has to be the first thing that the pause does). If
    1.20 @@ -1234,8 +1233,6 @@
    1.21  
    1.22  class G1CollectorPolicy_BestRegionsFirst: public G1CollectorPolicy {
    1.23    CollectionSetChooser* _collectionSetChooser;
    1.24 -  // If the estimated is less then desirable, resize if possible.
    1.25 -  void expand_if_possible(size_t numRegions);
    1.26  
    1.27    virtual void choose_collection_set(double target_pause_time_ms);
    1.28    virtual void record_collection_pause_start(double start_time_sec,
    1.29 @@ -1269,8 +1266,4 @@
    1.30    return (sum_of_squares - 2.0 * avg * sum + n_d * avg * avg) / n_d;
    1.31  }
    1.32  
    1.33 -// Local Variables: ***
    1.34 -// c-indentation-style: gnu ***
    1.35 -// End: ***
    1.36 -
    1.37  #endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1COLLECTORPOLICY_HPP

mercurial