src/share/vm/runtime/thread.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/share/vm/runtime/thread.hpp	Wed Aug 16 10:56:43 2017
--- new/src/share/vm/runtime/thread.hpp	Wed Aug 16 10:56:43 2017

*** 1,7 **** --- 1,7 ---- /* ! * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved. ! * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 54,64 **** --- 54,63 ---- #ifdef ZERO # include "stack_zero.hpp" #endif class ThreadSafepointState; class ThreadProfiler; class JvmtiThreadState; class JvmtiGetLoadedClassesClosure; class ThreadStatistics; class ConcurrentLocksDump;
*** 1717,1743 **** --- 1716,1725 ---- void deoptimize(); void make_zombies(); void deoptimized_wrt_marked_nmethods(); // Profiling operation (see fprofile.cpp) public: bool profile_last_Java_frame(frame* fr); private: ThreadProfiler* _thread_profiler; private: friend class FlatProfiler; // uses both [gs]et_thread_profiler. friend class FlatProfilerTask; // uses get_thread_profiler. friend class ThreadProfilerMark; // uses get_thread_profiler. ThreadProfiler* get_thread_profiler() { return _thread_profiler; } ThreadProfiler* set_thread_profiler(ThreadProfiler* tp) { ThreadProfiler* result = _thread_profiler; _thread_profiler = tp; return result; } public: // Returns the running thread as a JavaThread static inline JavaThread* current(); // Returns the active Java thread. Do not use this if you know you are calling

src/share/vm/runtime/thread.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File