Searched refs:threadStatus (Results 1 – 2 of 2) sorted by relevance
359 public static Thread.State toThreadState(int threadStatus) { in toThreadState() argument360 if ((threadStatus & JVMTI_THREAD_STATE_RUNNABLE) != 0) { in toThreadState()362 } else if ((threadStatus & JVMTI_THREAD_STATE_BLOCKED_ON_MONITOR_ENTER) != 0) { in toThreadState()364 } else if ((threadStatus & JVMTI_THREAD_STATE_WAITING_INDEFINITELY) != 0) { in toThreadState()366 } else if ((threadStatus & JVMTI_THREAD_STATE_WAITING_WITH_TIMEOUT) != 0) { in toThreadState()368 } else if ((threadStatus & JVMTI_THREAD_STATE_TERMINATED) != 0) { in toThreadState()370 } else if ((threadStatus & JVMTI_THREAD_STATE_ALIVE) == 0) { in toThreadState()
222 private volatile int threadStatus = 0; field in Thread720 if (threadStatus != 0) in start()