src/share/vm/runtime/thread.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8148630 Cdiff src/share/vm/runtime/thread.cpp

src/share/vm/runtime/thread.cpp

Print this page

        

*** 3324,3334 **** // If CompilerThreads ever become non-JavaThreads, add them here } void Threads::initialize_java_lang_classes(JavaThread* main_thread, TRAPS) { ! TraceTime timer("Initialize java.lang classes", TraceStartupTime); if (EagerXrunInit && Arguments::init_libraries_at_startup()) { create_vm_init_libraries(); } --- 3324,3336 ---- // If CompilerThreads ever become non-JavaThreads, add them here } void Threads::initialize_java_lang_classes(JavaThread* main_thread, TRAPS) { ! TraceTime timer("Initialize java.lang classes", ! log_is_enabled(Info, startuptime), ! LogTag::_startuptime); if (EagerXrunInit && Arguments::init_libraries_at_startup()) { create_vm_init_libraries(); }
*** 3440,3450 **** } HOTSPOT_VM_INIT_BEGIN(); // Timing (must come after argument parsing) ! TraceTime timer("Create VM", TraceStartupTime); // Initialize the os module after parsing the args jint os_init_2_result = os::init_2(); if (os_init_2_result != JNI_OK) return os_init_2_result; --- 3442,3454 ---- } HOTSPOT_VM_INIT_BEGIN(); // Timing (must come after argument parsing) ! TraceTime timer("Create VM", ! log_is_enabled(Info, startuptime), ! LogTag::_startuptime); // Initialize the os module after parsing the args jint os_init_2_result = os::init_2(); if (os_init_2_result != JNI_OK) return os_init_2_result;
*** 3525,3535 **** // Any JVMTI raw monitors entered in onload will transition into // real raw monitor. VM is setup enough here for raw monitor enter. JvmtiExport::transition_pending_onload_raw_monitors(); // Create the VMThread ! { TraceTime timer("Start VMThread", TraceStartupTime); VMThread::create(); Thread* vmthread = VMThread::vm_thread(); if (!os::create_thread(vmthread, os::vm_thread)) { vm_exit_during_initialization("Cannot create VM thread. " --- 3529,3542 ---- // Any JVMTI raw monitors entered in onload will transition into // real raw monitor. VM is setup enough here for raw monitor enter. JvmtiExport::transition_pending_onload_raw_monitors(); // Create the VMThread ! { TraceTime timer("Start VMThread", ! log_is_enabled(Info, startuptime), ! LogTag::_startuptime); ! VMThread::create(); Thread* vmthread = VMThread::vm_thread(); if (!os::create_thread(vmthread, os::vm_thread)) { vm_exit_during_initialization("Cannot create VM thread. "
src/share/vm/runtime/thread.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File