Home
last modified time | relevance | path

Searched refs:oldTail (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/locks/
DAbstractQueuedLongSynchronizer.java150 Node oldTail = tail; in enq() local
151 if (oldTail != null) { in enq()
152 U.putObject(node, Node.PREV, oldTail); in enq()
153 if (compareAndSetTail(oldTail, node)) { in enq()
154 oldTail.next = node; in enq()
155 return oldTail; in enq()
173 Node oldTail = tail; in addWaiter() local
174 if (oldTail != null) { in addWaiter()
175 U.putObject(node, Node.PREV, oldTail); in addWaiter()
176 if (compareAndSetTail(oldTail, node)) { in addWaiter()
[all …]