Lines Matching defs:act
1331 struct sigaction act;
1354 act.sa_sigaction = server_badsig_handler;
1355 (void) sigemptyset(&act.sa_mask);
1356 act.sa_flags = SA_SIGINFO;
1357 if (sigaction(badsigs[i], &act, NULL) == -1)
2660 struct sigaction act;
2680 act.sa_sigaction = badsig_handler;
2681 (void) sigemptyset(&act.sa_mask);
2682 act.sa_flags = SA_SIGINFO;
2683 if (sigaction(badsigs[i], &act, NULL) == -1)
2691 act.sa_handler = SIG_IGN;
2692 (void) sigemptyset(&act.sa_mask);
2693 act.sa_flags = 0;
2694 if (sigaction(SIGHUP, &act, NULL) == -1)
2737 act.sa_sigaction = hup_handler;
2738 (void) sigemptyset(&act.sa_mask);
2739 act.sa_flags = SA_SIGINFO;
2740 if (sigaction(SIGHUP, &act, NULL) == -1)
2744 act.sa_sigaction = term_handler;
2745 (void) sigemptyset(&act.sa_mask);
2746 act.sa_flags = SA_SIGINFO;
2747 if (sigaction(SIGTERM, &act, NULL) == -1)
2751 act.sa_sigaction = sig_handler;
2752 (void) sigemptyset(&act.sa_mask);
2753 act.sa_flags = SA_SIGINFO;
2754 if (sigaction(SIGINT, &act, NULL) == -1)
2758 act.sa_sigaction = sig_handler;
2759 (void) sigemptyset(&act.sa_mask);
2760 act.sa_flags = SA_SIGINFO;
2761 if (sigaction(SIGQUIT, &act, NULL) == -1)