comparison src/share/vm/gc_implementation/g1/g1SATBCardTableModRefBS.cpp @ 7180:f34d701e952e

8003935: Simplify the needed includes for using Thread::current() Reviewed-by: dholmes, rbackman, coleenp
author stefank
date Tue, 27 Nov 2012 14:20:21 +0100
parents f08d439fab8c
children b30744960351
comparison
equal deleted inserted replaced
7179:d0aa87f04bd5 7180:f34d701e952e
25 #include "precompiled.hpp" 25 #include "precompiled.hpp"
26 #include "gc_implementation/g1/g1SATBCardTableModRefBS.hpp" 26 #include "gc_implementation/g1/g1SATBCardTableModRefBS.hpp"
27 #include "gc_implementation/g1/heapRegion.hpp" 27 #include "gc_implementation/g1/heapRegion.hpp"
28 #include "gc_implementation/g1/satbQueue.hpp" 28 #include "gc_implementation/g1/satbQueue.hpp"
29 #include "runtime/mutexLocker.hpp" 29 #include "runtime/mutexLocker.hpp"
30 #include "runtime/thread.hpp" 30 #include "runtime/thread.inline.hpp"
31 #ifdef TARGET_OS_FAMILY_linux
32 # include "thread_linux.inline.hpp"
33 #endif
34 #ifdef TARGET_OS_FAMILY_solaris
35 # include "thread_solaris.inline.hpp"
36 #endif
37 #ifdef TARGET_OS_FAMILY_windows
38 # include "thread_windows.inline.hpp"
39 #endif
40 #ifdef TARGET_OS_FAMILY_bsd
41 # include "thread_bsd.inline.hpp"
42 #endif
43 31
44 G1SATBCardTableModRefBS::G1SATBCardTableModRefBS(MemRegion whole_heap, 32 G1SATBCardTableModRefBS::G1SATBCardTableModRefBS(MemRegion whole_heap,
45 int max_covered_regions) : 33 int max_covered_regions) :
46 CardTableModRefBSForCTRS(whole_heap, max_covered_regions) 34 CardTableModRefBSForCTRS(whole_heap, max_covered_regions)
47 { 35 {