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

/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/locks/
H A DCondition.java62 * <b>notEmpty.signal();</b>
76 * <b>notFull.signal();</b>
104 * {@linkplain #await waiting} and {@linkplain #signal signalling} methods.
160 * <li>Some other thread invokes the {@link #signal} method for this
195 * method return in response to a signal. In that case the implementation
196 * must ensure that the signal is redirected to another waiting thread, if
211 * <li>Some other thread invokes the {@link #signal} method for this
248 * <li>Some other thread invokes the {@link #signal} method for this
311 * method return in response to a signal, or over indicating the elapse
313 * must ensure that the signal i
425 void signal(); method in interface:Condition
[all...]
H A DAbstractQueuedSynchronizer.java213 * except that it only requires a single <tt>signal</tt> to
235 * public void signal() { sync.releaseShared(1); }
327 * inserted into a condition queue. Upon signal, the node is
360 * first indicate they need a signal,
381 * signal. So, most code doesn't need to check for particular
596 * If status is negative (i.e., possibly needing signal) try
622 * Release action for shared mode -- signal successor and ensure
624 * to calling unparkSuccessor of head if it needs signal.)
631 * signal. But if it does not, status is set to PROPAGATE to
668 * Try to signal nex
1889 public final void signal() { method in class:AbstractQueuedSynchronizer.ConditionObject
[all...]
/dalvik/dvz/
H A Ddvz.c25 #include <signal.h>
34 static void signal_forwarder (int signal, siginfo_t *si, void *context) argument
37 kill(g_pid, signal);

Completed in 103 milliseconds