/external/valgrind/tsan/ |
ts_events.h | 61 SIGNAL, // {tid, pc, obj, 0}
|
/libcore/luni/src/main/java/java/util/concurrent/locks/ |
AbstractQueuedLongSynchronizer.java | 119 * inserted into a condition queue. Upon signal, the node is 137 static final int SIGNAL = -1; 148 * SIGNAL: The successor of this node is (or will soon be) 152 * first indicate they need a signal, 173 * signal. So, most code doesn't need to check for particular 388 * If status is negative (i.e., possibly needing signal) try 414 * Release action for shared mode -- signal successor and ensure 416 * to calling unparkSuccessor of head if it needs signal.) 423 * signal. But if it does not, status is set to PROPAGATE to 434 if (ws == Node.SIGNAL) { 1688 public final void signal() { method in class:AbstractQueuedLongSynchronizer.ConditionObject [all...] |
AbstractQueuedSynchronizer.java | 236 * except that it only requires a single <tt>signal</tt> to 258 * public void signal() { sync.releaseShared(1); } 350 * inserted into a condition queue. Upon signal, the node is 368 static final int SIGNAL = -1; 379 * SIGNAL: The successor of this node is (or will soon be) 383 * first indicate they need a signal, 404 * signal. So, most code doesn't need to check for particular 619 * If status is negative (i.e., possibly needing signal) try 645 * Release action for shared mode -- signal successor and ensure 647 * to calling unparkSuccessor of head if it needs signal. 1918 public final void signal() { method in class:AbstractQueuedSynchronizer.ConditionObject [all...] |
/external/ppp/pppd/ |
main.c | 76 #include <signal.h> 615 new_phase(PHASE_DORMANT); /* allow signal to end holdoff */ 673 info("Terminating on signal %d", got_sigterm); 691 * setup_signals - initialize signal handling. 699 * Compute mask of all interesting signals and install signal handlers 700 * for each. Only one signal handler may be active at a time. Therefore, 710 #define SIGNAL(s, handler) do { \ 713 fatal("Couldn't establish signal handler (%d): %m", s); \ 718 SIGNAL(SIGHUP, hup); /* Hangup */ 719 SIGNAL(SIGINT, term); /* Interrupt * [all...] |