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

changeset 2314
f95d63e2154a
parent 2242
cd3ef3fd20dd
child 2647
a181f3a124dd
     1.1 --- a/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepThread.hpp	Tue Nov 23 15:01:43 2010 -0500
     1.2 +++ b/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepThread.hpp	Tue Nov 23 13:22:55 2010 -0800
     1.3 @@ -22,6 +22,21 @@
     1.4   *
     1.5   */
     1.6  
     1.7 +#ifndef SHARE_VM_GC_IMPLEMENTATION_CONCURRENTMARKSWEEP_CONCURRENTMARKSWEEPTHREAD_HPP
     1.8 +#define SHARE_VM_GC_IMPLEMENTATION_CONCURRENTMARKSWEEP_CONCURRENTMARKSWEEPTHREAD_HPP
     1.9 +
    1.10 +#include "gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.hpp"
    1.11 +#include "gc_implementation/shared/concurrentGCThread.hpp"
    1.12 +#ifdef TARGET_OS_FAMILY_linux
    1.13 +# include "thread_linux.inline.hpp"
    1.14 +#endif
    1.15 +#ifdef TARGET_OS_FAMILY_solaris
    1.16 +# include "thread_solaris.inline.hpp"
    1.17 +#endif
    1.18 +#ifdef TARGET_OS_FAMILY_windows
    1.19 +# include "thread_windows.inline.hpp"
    1.20 +#endif
    1.21 +
    1.22  class ConcurrentMarkSweepGeneration;
    1.23  class CMSCollector;
    1.24  
    1.25 @@ -251,3 +266,5 @@
    1.26      }
    1.27    }
    1.28  };
    1.29 +
    1.30 +#endif // SHARE_VM_GC_IMPLEMENTATION_CONCURRENTMARKSWEEP_CONCURRENTMARKSWEEPTHREAD_HPP

mercurial