< prev index next >

src/share/vm/gc/cms/concurrentMarkSweepGeneration.hpp

Print this page
rev 8362 : [mq]: hotspot

*** 20,49 **** * 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/cmsOopClosures.hpp" ! #include "gc_implementation/shared/gcHeapSummary.hpp" ! #include "gc_implementation/shared/gSpaceCounters.hpp" ! #include "gc_implementation/shared/gcStats.hpp" ! #include "gc_implementation/shared/gcWhen.hpp" ! #include "gc_implementation/shared/generationCounters.hpp" ! #include "memory/cardGeneration.hpp" #include "memory/freeBlockDictionary.hpp" #include "memory/iterator.hpp" - #include "memory/space.hpp" #include "memory/virtualspace.hpp" #include "runtime/mutexLocker.hpp" #include "services/memoryService.hpp" #include "utilities/bitMap.hpp" #include "utilities/stack.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 and for simplicity --- 20,49 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #ifndef SHARE_VM_GC_CMS_CONCURRENTMARKSWEEPGENERATION_HPP ! #define SHARE_VM_GC_CMS_CONCURRENTMARKSWEEPGENERATION_HPP ! #include "gc/cms/cmsOopClosures.hpp" ! #include "gc/cms/yieldingWorkgroup.hpp" ! #include "gc/shared/cardGeneration.hpp" ! #include "gc/shared/gSpaceCounters.hpp" ! #include "gc/shared/gcHeapSummary.hpp" ! #include "gc/shared/gcStats.hpp" ! #include "gc/shared/gcWhen.hpp" ! #include "gc/shared/generationCounters.hpp" ! #include "gc/shared/space.hpp" ! #include "gc/shared/taskqueue.hpp" #include "memory/freeBlockDictionary.hpp" #include "memory/iterator.hpp" #include "memory/virtualspace.hpp" #include "runtime/mutexLocker.hpp" #include "services/memoryService.hpp" #include "utilities/bitMap.hpp" #include "utilities/stack.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 and for simplicity
*** 1811,1816 **** public: TraceCMSMemoryManagerStats(CMSCollector::CollectorState phase, GCCause::Cause cause); }; ! #endif // SHARE_VM_GC_IMPLEMENTATION_CONCURRENTMARKSWEEP_CONCURRENTMARKSWEEPGENERATION_HPP --- 1811,1816 ---- public: TraceCMSMemoryManagerStats(CMSCollector::CollectorState phase, GCCause::Cause cause); }; ! #endif // SHARE_VM_GC_CMS_CONCURRENTMARKSWEEPGENERATION_HPP
< prev index next >