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

/libcore/luni/src/main/java/java/util/concurrent/locks/
H A DLockSupport.java19 * it <em>may</em> block. A call to {@code unpark} makes the permit
23 * <p>Methods {@code park} and {@code unpark} provide efficient
28 * to {@code unpark} it will preserve liveness, due to the
35 * spinning, but must be paired with an {@code unpark} to be
88 * LockSupport.unpark(waiters.peek());
120 * @param thread the thread to unpark, or {@code null}, in which case
123 public static void unpark(Thread thread) { method in class:LockSupport
125 unsafe.unpark(thread);
138 * <li>Some other thread invokes {@link #unpark unpark} wit
[all...]
/libcore/luni/src/main/java/sun/misc/
H A DUnsafe.java307 * a previous call to {@link #unpark}. This method may also return
308 * spuriously (that is, without the thread being told to unpark
333 * @param obj non-null; the object to unpark
335 public void unpark(Object obj) { method in class:Unsafe
337 ((Thread) obj).unpark();
/libcore/luni/src/main/java/java/lang/
H A DThread.java1151 public void unpark() { method in class:Thread
1173 * to unpark.
1197 * unpark and without the indicated amount of time elapsing).
1256 * method attempts to unpark the current thread immediately after
1261 * spuriously (that is, without the thread being told to unpark

Completed in 66 milliseconds