src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.hpp

Print this page

        

*** 20,29 **** --- 20,44 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_GC_IMPLEMENTATION_CONCURRENTMARKSWEEP_CONCURRENTMARKSWEEPGENERATION_HPP + #define SHARE_VM_GC_IMPLEMENTATION_CONCURRENTMARKSWEEP_CONCURRENTMARKSWEEPGENERATION_HPP + + #include "gc_implementation/concurrentMarkSweep/freeBlockDictionary.hpp" + #include "gc_implementation/shared/gSpaceCounters.hpp" + #include "gc_implementation/shared/gcStats.hpp" + #include "gc_implementation/shared/generationCounters.hpp" + #include "memory/generation.hpp" + #include "runtime/mutexLocker.hpp" + #include "runtime/virtualspace.hpp" + #include "services/memoryService.hpp" + #include "utilities/bitMap.inline.hpp" + #include "utilities/taskqueue.hpp" + #include "utilities/yieldingWorkgroup.hpp" + // ConcurrentMarkSweepGeneration is in support of a concurrent // mark-sweep old generation in the Detlefs-Printezis--Boehm-Demers-Schenker // style. We assume, for now, that this generation is always the // seniormost generation (modulo the PermGeneration), and for simplicity // in the first implementation, that this generation is a single compactible
*** 1879,1883 **** --- 1894,1900 ---- public: TraceCMSMemoryManagerStats(CMSCollector::CollectorState phase); TraceCMSMemoryManagerStats(); }; + + #endif // SHARE_VM_GC_IMPLEMENTATION_CONCURRENTMARKSWEEP_CONCURRENTMARKSWEEPGENERATION_HPP