diff src/share/vm/runtime/thread.cpp @ 7437:69627aa9ab10

Merge
author jwilhelm
date Fri, 21 Dec 2012 16:33:22 +0100
parents 2d6c433b1f38 0b3d19153cc6
children 989155e2d07a e0cf9af8978e 689e1218d7fe
line wrap: on
line diff
--- a/src/share/vm/runtime/thread.cpp	Fri Dec 21 01:39:34 2012 -0800
+++ b/src/share/vm/runtime/thread.cpp	Fri Dec 21 16:33:22 2012 +0100
@@ -3527,11 +3527,12 @@
       java_lang_Thread::set_thread_status(thread_object,
                                           java_lang_Thread::RUNNABLE);
 
-      // The VM preresolve methods to these classes. Make sure that get initialized
+      // The VM creates & returns objects of this class. Make sure it's initialized.
+      initialize_class(vmSymbols::java_lang_Class(), CHECK_0);
+
+      // The VM preresolves methods to these classes. Make sure that they get initialized
       initialize_class(vmSymbols::java_lang_reflect_Method(), CHECK_0);
       initialize_class(vmSymbols::java_lang_ref_Finalizer(),  CHECK_0);
-      // The VM creates & returns objects of this class. Make sure it's initialized.
-      initialize_class(vmSymbols::java_lang_Class(), CHECK_0);
       call_initializeSystemClass(CHECK_0);
 
       // get the Java runtime name after java.lang.System is initialized