8153742: Move Thread::current() to thread.hpp
authorstefank
Mon, 11 Apr 2016 08:51:53 +0200
changeset 37456 bf26e0f4235f
parent 37455 0ead2c64bfde
child 37457 79f4b6032f9e
8153742: Move Thread::current() to thread.hpp Reviewed-by: coleenp, jmasa
hotspot/src/share/vm/interpreter/abstractInterpreter.hpp
hotspot/src/share/vm/interpreter/interpreterRuntime.hpp
hotspot/src/share/vm/memory/resourceArea.hpp
hotspot/src/share/vm/runtime/javaCalls.hpp
hotspot/src/share/vm/runtime/vmThread.hpp
hotspot/src/share/vm/utilities/preserveException.hpp
--- a/hotspot/src/share/vm/interpreter/abstractInterpreter.hpp	Tue Apr 12 02:30:13 2016 +0200
+++ b/hotspot/src/share/vm/interpreter/abstractInterpreter.hpp	Mon Apr 11 08:51:53 2016 +0200
@@ -28,7 +28,7 @@
 #include "asm/macroAssembler.hpp"
 #include "code/stubs.hpp"
 #include "interpreter/bytecodes.hpp"
-#include "runtime/thread.inline.hpp"
+#include "runtime/thread.hpp"
 #include "runtime/vmThread.hpp"
 #include "utilities/top.hpp"
 
--- a/hotspot/src/share/vm/interpreter/interpreterRuntime.hpp	Tue Apr 12 02:30:13 2016 +0200
+++ b/hotspot/src/share/vm/interpreter/interpreterRuntime.hpp	Mon Apr 11 08:51:53 2016 +0200
@@ -31,7 +31,7 @@
 #include "oops/method.hpp"
 #include "runtime/frame.inline.hpp"
 #include "runtime/signature.hpp"
-#include "runtime/thread.inline.hpp"
+#include "runtime/thread.hpp"
 #include "utilities/top.hpp"
 
 // The InterpreterRuntime is called by the interpreter for everything
--- a/hotspot/src/share/vm/memory/resourceArea.hpp	Tue Apr 12 02:30:13 2016 +0200
+++ b/hotspot/src/share/vm/memory/resourceArea.hpp	Mon Apr 11 08:51:53 2016 +0200
@@ -26,7 +26,7 @@
 #define SHARE_VM_MEMORY_RESOURCEAREA_HPP
 
 #include "memory/allocation.hpp"
-#include "runtime/thread.inline.hpp"
+#include "runtime/thread.hpp"
 
 // The resource area holds temporary data structures in the VM.
 // The actual allocation areas are thread local. Typical usage:
--- a/hotspot/src/share/vm/runtime/javaCalls.hpp	Tue Apr 12 02:30:13 2016 +0200
+++ b/hotspot/src/share/vm/runtime/javaCalls.hpp	Mon Apr 11 08:51:53 2016 +0200
@@ -29,7 +29,7 @@
 #include "oops/method.hpp"
 #include "runtime/handles.hpp"
 #include "runtime/javaFrameAnchor.hpp"
-#include "runtime/thread.inline.hpp"
+#include "runtime/thread.hpp"
 #include "runtime/vmThread.hpp"
 #ifdef TARGET_ARCH_x86
 # include "jniTypes_x86.hpp"
--- a/hotspot/src/share/vm/runtime/vmThread.hpp	Tue Apr 12 02:30:13 2016 +0200
+++ b/hotspot/src/share/vm/runtime/vmThread.hpp	Mon Apr 11 08:51:53 2016 +0200
@@ -26,7 +26,7 @@
 #define SHARE_VM_RUNTIME_VMTHREAD_HPP
 
 #include "runtime/perfData.hpp"
-#include "runtime/thread.inline.hpp"
+#include "runtime/thread.hpp"
 #include "runtime/vm_operations.hpp"
 
 //
--- a/hotspot/src/share/vm/utilities/preserveException.hpp	Tue Apr 12 02:30:13 2016 +0200
+++ b/hotspot/src/share/vm/utilities/preserveException.hpp	Mon Apr 11 08:51:53 2016 +0200
@@ -26,7 +26,7 @@
 #define SHARE_VM_UTILITIES_PRESERVEEXCEPTION_HPP
 
 #include "runtime/handles.hpp"
-#include "runtime/thread.inline.hpp"
+#include "runtime/thread.hpp"
 
 // This file provides more support for exception handling; see also exceptions.hpp
 class PreserveExceptionMark {