src/share/vm/runtime/thread.cpp

changeset 1
2d8a650513c2
parent 0
f90c822e73f8
child 6876
710a3c8b516e
equal deleted inserted replaced
0:f90c822e73f8 1:2d8a650513c2
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"
3433 delete main_thread; 3439 delete main_thread;
3434 *canTryAgain = false; // don't let caller call JNI_CreateJavaVM again 3440 *canTryAgain = false; // don't let caller call JNI_CreateJavaVM again
3435 return status; 3441 return status;
3436 } 3442 }
3437 3443
3444 #ifdef MIPS64
3445 /* 2013/11/5 Jin: To be accessed in NativeGeneralJump::patch_verified_entry() */
3446 main_thread->set_handle_wrong_method_stub(SharedRuntime::get_handle_wrong_method_stub());
3447 #endif
3448
3438 // Should be done after the heap is fully created 3449 // Should be done after the heap is fully created
3439 main_thread->cache_global_variables(); 3450 main_thread->cache_global_variables();
3440 3451
3441 HandleMark hm; 3452 HandleMark hm;
3442 3453

mercurial