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

/libcore/ojluni/src/main/java/java/util/concurrent/locks/
H A DReentrantLock.java47 * <p>A {@code ReentrantLock} is <em>owned</em> by the thread last
78 * private final ReentrantLock lock = new ReentrantLock();
107 public class ReentrantLock implements Lock, java.io.Serializable { class in inherits:Lock,java.io.Serializable
254 * Creates an instance of {@code ReentrantLock}.
255 * This is equivalent to using {@code ReentrantLock(false)}.
257 public ReentrantLock() { method in class:ReentrantLock
262 * Creates an instance of {@code ReentrantLock} with the
267 public ReentrantLock(boolean fair) { method in class:ReentrantLock
517 * ReentrantLock loc
[all...]

Completed in 125 milliseconds