src/share/vm/runtime/thread.hpp

Print this page

        

*** 20,29 **** --- 20,60 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_RUNTIME_THREAD_HPP + #define SHARE_VM_RUNTIME_THREAD_HPP + + #include "memory/allocation.hpp" + #include "memory/threadLocalAllocBuffer.hpp" + #include "oops/oop.hpp" + #include "prims/jni.h" + #include "prims/jvmtiExport.hpp" + #include "runtime/frame.hpp" + #include "runtime/javaFrameAnchor.hpp" + #include "runtime/jniHandles.hpp" + #include "runtime/mutexLocker.hpp" + #include "runtime/os.hpp" + #include "runtime/osThread.hpp" + #include "runtime/park.hpp" + #include "runtime/safepoint.hpp" + #include "runtime/stubRoutines.hpp" + #include "runtime/threadLocalStorage.hpp" + #include "runtime/unhandledOops.hpp" + #include "utilities/exceptions.hpp" + #include "utilities/top.hpp" + #ifndef SERIALGC + #include "gc_implementation/g1/dirtyCardQueue.hpp" + #include "gc_implementation/g1/satbQueue.hpp" + #endif + #ifdef ZERO + #ifdef TARGET_ARCH_zero + # include "stack_zero.hpp" + #endif + #endif + class ThreadSafepointState; class ThreadProfiler; class JvmtiThreadState; class JvmtiGetLoadedClassesClosure;
*** 1512,1522 **** #else // !SERIALGC void initialize_queues() { } #endif // !SERIALGC // Machine dependent stuff ! #include "incls/_thread_pd.hpp.incl" public: void set_blocked_on_compilation(bool value) { _blocked_on_compilation = value; } --- 1543,1571 ---- #else // !SERIALGC void initialize_queues() { } #endif // !SERIALGC // Machine dependent stuff ! #ifdef TARGET_OS_ARCH_linux_x86 ! # include "thread_linux_x86.hpp" ! #endif ! #ifdef TARGET_OS_ARCH_linux_sparc ! # include "thread_linux_sparc.hpp" ! #endif ! #ifdef TARGET_OS_ARCH_linux_zero ! # include "thread_linux_zero.hpp" ! #endif ! #ifdef TARGET_OS_ARCH_solaris_x86 ! # include "thread_solaris_x86.hpp" ! #endif ! #ifdef TARGET_OS_ARCH_solaris_sparc ! # include "thread_solaris_sparc.hpp" ! #endif ! #ifdef TARGET_OS_ARCH_windows_x86 ! # include "thread_windows_x86.hpp" ! #endif ! public: void set_blocked_on_compilation(bool value) { _blocked_on_compilation = value; }
*** 1767,1771 **** --- 1816,1822 ---- if (_thread) _thread->leave_signal_handler(); _thread = NULL; } }; + + #endif // SHARE_VM_RUNTIME_THREAD_HPP