Searched defs:thread_id (Results 1 - 13 of 13) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdThread.java31 private int thread_id; field in class:BsdThread
41 this.thread_id = (int) threadIdAddr.getCIntegerAt(0, 4, true);
47 this.thread_id = (int) id;
55 return (((BsdThread) obj).thread_id == thread_id);
59 return thread_id;
63 return Integer.toString(thread_id);
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileLog.hpp58 CompileLog(const char* file, FILE* fp, intx thread_id);
61 intx thread_id() { return _thread_id; } function in class:CompileLog
H A DcompileLog.cpp37 CompileLog::CompileLog(const char* file, FILE* fp, intx thread_id) argument
43 _thread_id = thread_id;
216 jio_snprintf(buf, buflen, UINTX_FORMAT, log->thread_id());
H A DcompileBroker.cpp1633 intx thread_id = os::current_thread_id(); local
1638 thread_id, os::current_process_id());
1642 os::file_separator(), thread_id, os::current_process_id());
1656 CompileLog* log = new(ResourceObj::C_HEAP, mtCompiler) CompileLog(file, fp, thread_id);
1663 xtty->elem("thread_logfile thread='%d' filename='%s'", thread_id, file);
/openjdk7/hotspot/src/share/vm/runtime/
H A DosThread.hpp116 thread_id_t thread_id() const { return _thread_id; } function in class:OSThread
122 // thread has a unique thread_id (BsdThreads or NPTL). It can be used
/openjdk7/hotspot/src/os/windows/launcher/
H A Djava_md.c1337 unsigned thread_id; local
1355 &thread_id);
1363 &thread_id);
/openjdk7/hotspot/src/share/vm/utilities/
H A Dostream.cpp799 intx thread_id = os::current_thread_id(); local
800 intx holder = hold(thread_id);
829 intx thread_id = os::current_thread_id();
830 return defaultStream::instance->hold(thread_id);
839 intx thread_id = os::current_thread_id(); local
840 if (defaultStream::instance->writer() == thread_id) {
843 release_tty(thread_id);
/openjdk7/hotspot/src/share/vm/services/
H A Dmanagement.cpp365 static JavaThread* find_java_thread_from_id(jlong thread_id) { argument
374 thread_id == java_lang_Thread::thread_id(tobj)) {
1512 // If thread_id == 0, return CPU time for the current thread.
1513 JVM_ENTRY(jlong, jmm_GetThreadCpuTime(JNIEnv *env, jlong thread_id))
1518 if (thread_id < 0) {
1524 if (thread_id == 0) {
1529 java_thread = find_java_thread_from_id(thread_id);
1538 // If thread_id == 0, CPU time for the current thread is returned.
1542 JVM_ENTRY(jlong, jmm_GetThreadCpuTimeWithKind(JNIEnv *env, jlong thread_id, jboolea
[all...]
/openjdk7/jdk/src/windows/bin/
H A Djava_md.c1145 unsigned thread_id; local
1163 &thread_id);
1171 &thread_id);
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.cpp953 jlong java_lang_Thread::thread_id(oop java_thread) { function in class:java_lang_Thread
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp1050 if ( osthr->thread_id() != -1 ) {
1056 osthr->thread_id(), osthr->lwp_id(), prio);
1085 static OSThread* create_os_thread(Thread* thread, thread_t thread_id) { argument
1091 osthread->set_thread_id(thread_id);
1104 osthread->thread_id(), osthread->lwp_id() );
1601 int status = thr_continue(thread->osthread()->thread_id());
4273 status = thr_setprio(thread->osthread()->thread_id(), newpri);
4279 set_lwp_class_and_priority(osthread->thread_id(),
4287 lwp_status = set_lwp_class_and_priority(osthread->thread_id(),
4303 int status = thr_getprio(thread->osthread()->thread_id(),
[all...]
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp438 static OSThread* create_os_thread(Thread* thread, HANDLE thread_handle, int thread_id) { argument
453 osthread->set_thread_id(thread_id);
511 unsigned thread_id; local
583 &thread_id);
593 &thread_id);
607 osthread->set_thread_id(thread_id);
5093 get_thread_handle_for_extended_context(&h, _thread->osthread()->thread_id());
/openjdk7/jdk/src/share/javavm/export/
H A Djvmti.h556 jlong thread_id; member in struct:_jvmtiHeapReferenceInfoStackLocal
564 jlong thread_id; member in struct:_jvmtiHeapReferenceInfoJniLocal

Completed in 138 milliseconds