< prev index next >

src/hotspot/share/prims/jvmtiExport.hpp

Print this page
rev 47287 : Port 09.17.Thread_SMR_logging_update from JDK9 to JDK10

*** 397,406 **** --- 397,414 ---- static jint load_agent_library(const char *agent, const char *absParam, const char *options, outputStream* out) NOT_JVMTI_RETURN_(JNI_ERR); #endif // SetNativeMethodPrefix support static char** get_all_native_method_prefixes(int* count_ptr) NOT_JVMTI_RETURN_(NULL); + + // JavaThread lifecycle support: + static jvmtiError cv_external_thread_to_JavaThread(ThreadsList * t_list, + jthread thread, + JavaThread ** jt_pp, + oop * thread_oop_p); + static jvmtiError cv_oop_to_JavaThread(ThreadsList * t_list, oop thread_oop, + JavaThread ** jt_pp); }; // Support class used by JvmtiDynamicCodeEventCollector and others. It // describes a single code blob by name and address range. class JvmtiCodeBlobDesc : public CHeapObj<mtInternal> {
< prev index next >