< prev index next >

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

Print this page

        

*** 36,45 **** --- 36,48 ---- #include "gc/parallel/parallel_globals.hpp" #endif #if INCLUDE_SERIALGC #include "gc/serial/serial_globals.hpp" #endif + #if INCLUDE_EPSILONGC + #include "gc/epsilon/epsilon_globals.hpp" + #endif #define GC_FLAGS(develop, \ develop_pd, \ product, \ product_pd, \
*** 116,125 **** --- 119,144 ---- lp64_product, \ range, \ constraint, \ writeable)) \ \ + EPSILONGC_ONLY(GC_EPSILON_FLAGS( \ + develop, \ + develop_pd, \ + product, \ + product_pd, \ + diagnostic, \ + diagnostic_pd, \ + experimental, \ + notproduct, \ + manageable, \ + product_rw, \ + lp64_product, \ + range, \ + constraint, \ + writeable)) \ + \ /* gc */ \ \ product(bool, UseConcMarkSweepGC, false, \ "Use Concurrent Mark-Sweep GC in the old generation") \ \
*** 133,142 **** --- 152,164 ---- "Use the Parallel Scavenge garbage collector") \ \ product(bool, UseParallelOldGC, false, \ "Use the Parallel Old garbage collector") \ \ + experimental(bool, UseEpsilonGC, false, \ + "Use the Epsilon (no-op) garbage collector") \ + \ product(uint, ParallelGCThreads, 0, \ "Number of parallel threads parallel gc will use") \ constraint(ParallelGCThreadsConstraintFunc,AfterErgo) \ \ diagnostic(bool, UseSemaphoreGCThreadsSynchronization, true, \
< prev index next >