Lines Matching refs:signal
18 #include <signal.h>
32 // general signal handler
35 LOG("handler recv a signal: %d", signum);
41 * @tc.name alarm function test, cancel alarm. basic alarm function is tested in {signal}
101 LOG("child received an unexpected signal: %d", mReceivedSignal);
213 * @tc.name timer_create function create a timer for give signal test
222 ASSERT_NE(signal(SIGUSR1, SignalHandler), SIG_ERR) << "ERROR: signal()";
240 signal(SIGUSR1, SIG_DFL);
359 LOG("child received an unexpected signal: %d", mReceivedSignal);
399 ASSERT_NE(signal(SIGINT, SignalHandler), SIG_ERR) << "ERROR: signal()";
442 signal(SIGINT, SIG_DFL);
447 * @tc.name timer_getoverrun function create a timer for SIGALRM signal and get overrun time test
457 /* Block timer signal temporarily */