Lines Matching defs:sigaction
69 struct sigaction {
73 sigaction (int signum, const struct* sigaction, struct* sigaction)
209 static struct sigaction sig_segv;
210 static struct sigaction sig_int;
211 static struct sigaction sig_fpe;
212 static struct sigaction sig_ill;
326 /* Signal handler for SIGINT using 'sigaction'. */
331 sigaction (SIGINT, &sig_int, NULL);
337 /* Signal handler for SIGSEGV using 'sigaction'. */
347 sigaction (SIGSEGV, &sig_segv, NULL);
372 /* Signal handler for SIGFPE using 'sigaction'. */
382 sigaction (SIGFPE, &sig_fpe, NULL);
436 /* Signal handler for SIGILL using 'sigaction'. */
446 sigaction (SIGILL, &sig_ill, NULL);
1479 sigaction (SIGSEGV, &sig_segv, NULL);
1480 sigaction (SIGINT, &sig_int, NULL);
1481 sigaction (SIGFPE, &sig_fpe, NULL);
1482 sigaction (SIGILL, &sig_ill, NULL);