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

/libcore/ojluni/src/main/native/
H A DNativeThread.c41 #define INTERRUPT_SIGNAL (__SIGRTMIN + 2) macro
45 #define INTERRUPT_SIGNAL (SIGRTMAX - 2) macro
50 #define INTERRUPT_SIGNAL SIGIO macro
65 /* Install the null handler for INTERRUPT_SIGNAL. This might overwrite the
77 if (sigaction(INTERRUPT_SIGNAL, &sa, &osa) < 0)
96 ret = thr_kill((thread_t)thread, INTERRUPT_SIGNAL);
98 ret = pthread_kill((pthread_t)thread, INTERRUPT_SIGNAL);

Completed in 61 milliseconds