Searched defs:new_thread (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/cpu/zero/vm/
H A DbytecodeInterpreter_zero.hpp68 inline void set_thread(JavaThread* new_thread) { argument
69 _thread = new_thread;
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.cpp975 CompilerThread* new_thread = make_compiler_thread(name_buffer, _c2_method_queue, counters, CHECK); local
976 _method_threads->append(new_thread);
983 CompilerThread* new_thread = make_compiler_thread(name_buffer, _c1_method_queue, counters, CHECK); local
984 _method_threads->append(new_thread);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnv.cpp1137 JvmtiAgentThread *new_thread = new JvmtiAgentThread(this, proc, arg); local
1141 if (new_thread == NULL || new_thread->osthread() == NULL) {
1142 if (new_thread) delete new_thread;
1146 java_lang_Thread::set_thread(thread_hndl(), new_thread); local
1150 new_thread->set_threadObj(thread_hndl());
1151 Threads::add(new_thread);
1152 Thread::start(new_thread);

Completed in 78 milliseconds