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

/libcore/luni/src/main/java/java/util/concurrent/
H A DFutureTask.java80 private volatile WaitNode waiters;
324 static final class WaitNode { class in class:FutureTask
326 volatile WaitNode next;
327 WaitNode() { thread = Thread.currentThread(); } method in class:FutureTask.WaitNode
336 for (WaitNode q; (q = waiters) != null;) {
344 WaitNode next = q.next;
376 WaitNode q = null;
396 q = new WaitNode();
435 private void removeWaiter(WaitNode node) {
440 for (WaitNode pre
[all...]

Completed in 44 milliseconds