HomeSort by relevance Sort by last modified time
    Searched defs:SIGNAL (Results 1 - 8 of 8) sorted by null

  /external/arduino/hardware/arduino/cores/arduino/
WInterrupts.c 189 SIGNAL(INT0_vect) {
194 SIGNAL(INT1_vect) {
199 SIGNAL(INT2_vect) {
204 SIGNAL(INT3_vect) {
209 SIGNAL(INT4_vect) {
214 SIGNAL(INT5_vect) {
219 SIGNAL(INT6_vect) {
224 SIGNAL(INT7_vect) {
231 SIGNAL(INT0_vect) {
236 SIGNAL(INT1_vect)
    [all...]
wiring.c 44 SIGNAL(TIMER0_OVF_vect)
HardwareSerial.cpp 81 SIGNAL(USART_RX_vect)
93 SIGNAL(SIG_USART0_RECV)
99 SIGNAL(SIG_UART0_RECV)
107 //SIGNAL(SIG_USART_RECV)
108 SIGNAL(USART0_RX_vect)
121 SIGNAL(SIG_UART_RECV)
139 //SIGNAL(SIG_USART1_RECV)
140 SIGNAL(USART1_RX_vect)
150 SIGNAL(USART2_RX_vect)
160 SIGNAL(USART3_RX_vect
    [all...]
  /external/arduino/libraries/Wire/utility/
twi.c 288 // transmit master read ready signal, with or without ack
332 SIGNAL(TWI_vect)
  /libcore/luni/src/main/java/java/util/concurrent/
ForkJoinTask.java 182 * waits by other threads have the SIGNAL bit set. Completion of
183 * a stolen task with SIGNAL set awakens any waiters via
198 private static final int SIGNAL = 1;
202 * also clearing signal request bits.
231 UNSAFE.compareAndSwapInt(this, statusOffset, 0, SIGNAL))) &&
255 0, SIGNAL);
284 0, SIGNAL);
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java 118 * inserted into a condition queue. Upon signal, the node is
136 static final int SIGNAL = -1;
147 * SIGNAL: The successor of this node is (or will soon be)
151 * first indicate they need a signal,
172 * signal. So, most code doesn't need to check for particular
387 * If status is negative (i.e., possibly needing signal) try
413 * Release action for shared mode -- signal successor and ensure
415 * to calling unparkSuccessor of head if it needs signal.)
422 * signal. But if it does not, status is set to PROPAGATE to
433 if (ws == Node.SIGNAL) {
1687 public final void signal() { method in class:AbstractQueuedLongSynchronizer.ConditionObject
    [all...]
AbstractQueuedSynchronizer.java 234 * except that it only requires a single <tt>signal</tt> to
256 * public void signal() { sync.releaseShared(1); }
347 * inserted into a condition queue. Upon signal, the node is
365 static final int SIGNAL = -1;
376 * SIGNAL: The successor of this node is (or will soon be)
380 * first indicate they need a signal,
401 * signal. So, most code doesn't need to check for particular
616 * If status is negative (i.e., possibly needing signal) try
642 * Release action for shared mode -- signal successor and ensure
644 * to calling unparkSuccessor of head if it needs signal.
1915 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...]

Completed in 163 milliseconds