Searched defs:waitStatus (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/concurrent/locks/
H A DAbstractQueuedLongSynchronizer.java163 /** waitStatus value to indicate thread has cancelled */
165 /** waitStatus value to indicate successor's thread needs unparking */
167 /** waitStatus value to indicate thread is waiting on condition */
170 * waitStatus value to indicate the next acquireShared should
209 volatile int waitStatus; field in class:AbstractQueuedLongSynchronizer.Node
213 * for checking waitStatus. Assigned during enqueing, and nulled
287 Node(Thread thread, int waitStatus) { // Used by Condition argument
288 this.waitStatus = waitStatus;
296 * If head exists, its waitStatus i
[all...]
H A DAbstractQueuedSynchronizer.java386 /** waitStatus value to indicate thread has cancelled */
388 /** waitStatus value to indicate successor's thread needs unparking */
390 /** waitStatus value to indicate thread is waiting on condition */
393 * waitStatus value to indicate the next acquireShared should
432 volatile int waitStatus; field in class:AbstractQueuedSynchronizer.Node
436 * for checking waitStatus. Assigned during enqueing, and nulled
510 Node(Thread thread, int waitStatus) { // Used by Condition argument
511 this.waitStatus = waitStatus;
519 * If head exists, its waitStatus i
[all...]

Completed in 124 milliseconds