Lines Matching refs:act
199 struct sigaction act; in setup_sigsys_handler() local
202 memset(&act, 0, sizeof(act)); in setup_sigsys_handler()
204 act.sa_sigaction = handle_sigsys; in setup_sigsys_handler()
205 act.sa_flags = SA_SIGINFO; in setup_sigsys_handler()
206 act.sa_mask = mask; in setup_sigsys_handler()
207 return sigaction(SIGSYS, &act, NULL); in setup_sigsys_handler()
258 struct sigaction act; in TEST_SIGNAL() local
267 memset(&act, 0, sizeof(act)); in TEST_SIGNAL()
270 act.sa_sigaction = handle_sigsys; in TEST_SIGNAL()
271 act.sa_flags = SA_SIGINFO; in TEST_SIGNAL()
272 act.sa_mask = mask; in TEST_SIGNAL()
274 ret = sigaction(SIGSYS, &act, NULL); in TEST_SIGNAL()