# HG changeset patch # User stefank # Date 1460357513 -7200 # Node ID bf26e0f4235fcd8bf1ddd1cae34add1f039f2b10 # Parent 0ead2c64bfdef8b291c972c0772746a688bd02e0 8153742: Move Thread::current() to thread.hpp Reviewed-by: coleenp, jmasa diff -r 0ead2c64bfde -r bf26e0f4235f hotspot/src/share/vm/interpreter/abstractInterpreter.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" diff -r 0ead2c64bfde -r bf26e0f4235f hotspot/src/share/vm/interpreter/interpreterRuntime.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 diff -r 0ead2c64bfde -r bf26e0f4235f hotspot/src/share/vm/memory/resourceArea.hpp --- 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: diff -r 0ead2c64bfde -r bf26e0f4235f hotspot/src/share/vm/runtime/javaCalls.hpp --- 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" diff -r 0ead2c64bfde -r bf26e0f4235f hotspot/src/share/vm/runtime/vmThread.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" // diff -r 0ead2c64bfde -r bf26e0f4235f hotspot/src/share/vm/utilities/preserveException.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 {