Searched defs:RUNNABLE (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/test/java/lang/Thread/
H A DThreadStateTest.java59 checkThreadState(myThread, Thread.State.RUNNABLE);
113 if (state != Thread.State.RUNNABLE) {
115 " but it should at least be RUNNABLE");
152 private final int RUNNABLE = 0; field in class:ThreadStateTest.MyThread
161 private volatile int state = RUNNABLE;
170 case RUNNABLE: {
185 state = RUNNABLE;
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DThreadStateTest.java69 Utils.checkThreadState(myThread, Thread.State.RUNNABLE);
70 checkLockInfo(myThread, Thread.State.RUNNABLE, null, null);
74 checkSuspendedThreadState(myThread, Thread.State.RUNNABLE);
231 private final int RUNNABLE = 0; field in class:ThreadStateTest.MyThread
239 private int state = RUNNABLE;
247 case RUNNABLE: {
262 state = RUNNABLE;
/openjdk7/hotspot/src/share/vm/runtime/
H A DosThread.hpp47 RUNNABLE, // Has been started and is runnable, but not necessarily running enumerator in enum:ThreadState
/openjdk7/jdk/src/share/classes/java/lang/
H A DThread.java1723 * <li>{@link #RUNNABLE}<br>
1763 RUNNABLE, enum constant in enum:Thread.State
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.hpp350 RUNNABLE = JVMTI_THREAD_STATE_ALIVE + // runnable / running enumerator in enum:java_lang_Thread::ThreadStatus

Completed in 32 milliseconds