Lines Matching defs:act
136 struct sigaction act;
139 sigaction(i, 0, &act);
140 if (act.sa_handler == SIG_IGN) {
250 struct sigaction act, oact;
262 sigemptyset(&act.sa_mask);
263 act.sa_flags = (sig == SIGSEGV) ? (SA_ONSTACK | SA_SIGINFO) : 0;
264 act.sa_handler = func;
265 sigaction(sig, &act, &oact);
434 struct sigaction act, oact;
449 sigemptyset(&act.sa_mask);
450 act.sa_flags = 0;
451 act.sa_handler = fault;
452 sigaction(SIGALRM, &act, &oact);