comparison src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepThread.cpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents cd3ef3fd20dd
children a181f3a124dd
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 * 22 *
23 */ 23 */
24 24
25 # include "incls/_precompiled.incl" 25 #include "precompiled.hpp"
26 # include "incls/_concurrentMarkSweepThread.cpp.incl" 26 #include "classfile/systemDictionary.hpp"
27 #include "gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.inline.hpp"
28 #include "gc_implementation/concurrentMarkSweep/concurrentMarkSweepThread.hpp"
29 #include "memory/genCollectedHeap.hpp"
30 #include "oops/instanceRefKlass.hpp"
31 #include "oops/oop.inline.hpp"
32 #include "runtime/init.hpp"
33 #include "runtime/interfaceSupport.hpp"
34 #include "runtime/java.hpp"
35 #include "runtime/javaCalls.hpp"
36 #include "runtime/mutexLocker.hpp"
37 #include "runtime/os.hpp"
38 #include "runtime/vmThread.hpp"
27 39
28 // ======= Concurrent Mark Sweep Thread ======== 40 // ======= Concurrent Mark Sweep Thread ========
29 41
30 // The CMS thread is created when Concurrent Mark Sweep is used in the 42 // The CMS thread is created when Concurrent Mark Sweep is used in the
31 // older of two generations in a generational memory system. 43 // older of two generations in a generational memory system.