src/share/vm/runtime/thread.cpp

changeset 8604
04d83ba48607
parent 8288
efe013052465
parent 7994
04ff2f6cd0eb
child 9122
024be04bb151
equal deleted inserted replaced
8603:e134dc1879b7 8604:04d83ba48607
18 * 18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 * 22 *
23 */
24
25 /*
26 * This file has been modified by Loongson Technology in 2015. These
27 * modifications are Copyright (c) 2015 Loongson Technology, and are made
28 * available on the same license terms set forth above.
23 */ 29 */
24 30
25 #include "precompiled.hpp" 31 #include "precompiled.hpp"
26 #include "classfile/classLoader.hpp" 32 #include "classfile/classLoader.hpp"
27 #include "classfile/javaClasses.hpp" 33 #include "classfile/javaClasses.hpp"
3423 delete main_thread; 3429 delete main_thread;
3424 *canTryAgain = false; // don't let caller call JNI_CreateJavaVM again 3430 *canTryAgain = false; // don't let caller call JNI_CreateJavaVM again
3425 return status; 3431 return status;
3426 } 3432 }
3427 3433
3434 #ifdef MIPS64
3435 /* 2013/11/5 Jin: To be accessed in NativeGeneralJump::patch_verified_entry() */
3436 main_thread->set_handle_wrong_method_stub(SharedRuntime::get_handle_wrong_method_stub());
3437 #endif
3438
3428 // Should be done after the heap is fully created 3439 // Should be done after the heap is fully created
3429 main_thread->cache_global_variables(); 3440 main_thread->cache_global_variables();
3430 3441
3431 HandleMark hm; 3442 HandleMark hm;
3432 3443

mercurial