< prev index next >

src/share/vm/gc/shared/collectorPolicy.hpp

Print this page

        

@@ -49,10 +49,11 @@
 class GenCollectorPolicy;
 class AdaptiveSizePolicy;
 #if INCLUDE_ALL_GCS
 class ConcurrentMarkSweepPolicy;
 class G1CollectorPolicy;
+class ShenandoahCollectorPolicy;
 #endif // INCLUDE_ALL_GCS
 
 class GCPolicyCounters;
 class MarkSweepPolicy;
 

@@ -138,10 +139,11 @@
   bool is_concurrent_mark_sweep_policy() { return as_concurrent_mark_sweep_policy() != NULL; }
   bool is_g1_policy()                    { return as_g1_policy() != NULL; }
 #else  // INCLUDE_ALL_GCS
   bool is_concurrent_mark_sweep_policy() { return false; }
   bool is_g1_policy()                    { return false; }
+  bool is_pgc_policy()                    { return false; }
 #endif // INCLUDE_ALL_GCS
 
 
   virtual GenRemSet* create_rem_set(MemRegion reserved);
 
< prev index next >