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

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DFutureTask.java109 private volatile WaitNode waiters;
353 static final class WaitNode { class in class:FutureTask
355 volatile WaitNode next;
356 WaitNode() { thread = Thread.currentThread(); } method in class:FutureTask.WaitNode
365 for (WaitNode q; (q = waiters) != null;) {
373 WaitNode next = q.next;
405 WaitNode q = null;
425 q = new WaitNode();
464 private void removeWaiter(WaitNode node) {
469 for (WaitNode pre
[all...]

Completed in 234 milliseconds