src/share/vm/runtime/thread.cpp

changeset 7994
04ff2f6cd0eb
parent 7633
8461d0b03127
parent 7535
7ae4e26cb1e0
child 8604
04d83ba48607
equal deleted inserted replaced
7993:9bf9a733246b 7994:04ff2f6cd0eb
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"
3420 delete main_thread; 3426 delete main_thread;
3421 *canTryAgain = false; // don't let caller call JNI_CreateJavaVM again 3427 *canTryAgain = false; // don't let caller call JNI_CreateJavaVM again
3422 return status; 3428 return status;
3423 } 3429 }
3424 3430
3431 #ifdef MIPS64
3432 /* 2013/11/5 Jin: To be accessed in NativeGeneralJump::patch_verified_entry() */
3433 main_thread->set_handle_wrong_method_stub(SharedRuntime::get_handle_wrong_method_stub());
3434 #endif
3435
3425 // Should be done after the heap is fully created 3436 // Should be done after the heap is fully created
3426 main_thread->cache_global_variables(); 3437 main_thread->cache_global_variables();
3427 3438
3428 HandleMark hm; 3439 HandleMark hm;
3429 3440

mercurial