Searched refs:sigaction (Results 101 - 125 of 241) sorted by relevance

12345678910

/macosx-10.10.1/ntp-92/ntpd/
H A Dntp_loopfilter.c175 static struct sigaction sigsys; /* current sigaction status */
176 static struct sigaction newsigsys; /* new sigaction status */
907 if (sigaction(SIGSYS, &newsigsys, &sigsys)) {
909 "sigaction() fails to save SIGSYS trap: %m");
914 if ((sigaction(SIGSYS, &sigsys,
915 (struct sigaction *)NULL))) {
917 "sigaction() fails to restore SIGSYS trap: %m");
/macosx-10.10.1/apache-793/httpd/server/
H A Dmpm_unix.c1002 struct sigaction sa;
1015 if (sigaction(SIGSEGV, &sa, NULL) < 0)
1016 ap_log_error(APLOG_MARK, APLOG_WARNING, errno, s, APLOGNO(00061) "sigaction(SIGSEGV)");
1018 if (sigaction(SIGBUS, &sa, NULL) < 0)
1019 ap_log_error(APLOG_MARK, APLOG_WARNING, errno, s, APLOGNO(00062) "sigaction(SIGBUS)");
1022 if (sigaction(SIGABORT, &sa, NULL) < 0)
1023 ap_log_error(APLOG_MARK, APLOG_WARNING, errno, s, APLOGNO(00063) "sigaction(SIGABORT)");
1026 if (sigaction(SIGABRT, &sa, NULL) < 0)
1027 ap_log_error(APLOG_MARK, APLOG_WARNING, errno, s, APLOGNO(00064) "sigaction(SIGABRT)");
1030 if (sigaction(SIGIL
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/Unix/
H A DSignals.inc79 struct sigaction SA;
89 struct sigaction NewHandler;
96 sigaction(Signal, &NewHandler,
113 sigaction(RegisteredSignalInfo[i].SigNo,
H A DProgram.inc304 struct sigaction Act, Old;
318 sigaction(SIGALRM, &Act, &Old);
333 sigaction(SIGALRM, &Old, 0);
350 sigaction(SIGALRM, &Old, 0);
/macosx-10.10.1/ppp-786.1.1/Helpers/vpnd/
H A Dmain.c673 struct sigaction sSigAction, sSigOldAction;
680 sigaction(SIGTERM, &sSigAction, &sSigOldAction);
683 sigaction(SIGINT, &sSigAction, &sSigOldAction);
686 sigaction(SIGHUP, &sSigAction, &sSigOldAction);
689 sigaction(SIGUSR1, &sSigAction, &sSigOldAction);
693 sigaction(SIGCHLD, &sSigAction, &sSigOldAction);
/macosx-10.10.1/cups-408/cups/scheduler/
H A Dtestsub.c63 struct sigaction action; /* Actions for POSIX signals */
131 sigaction(SIGINT, &action, NULL);
132 sigaction(SIGTERM, &action, NULL);
H A Dprocess.c472 struct sigaction action; /* POSIX signal handler */
755 sigaction(SIGTERM, &action, NULL);
756 sigaction(SIGCHLD, &action, NULL);
757 sigaction(SIGPIPE, &action, NULL);
H A Dmain.c117 struct sigaction action; /* Actions for POSIX signals */
355 sigaction(SIGUSR1, &action, NULL);
356 sigaction(SIGCHLD, &action, NULL);
360 sigaction(SIGHUP, &action, NULL);
580 sigaction(SIGCHLD, &action, NULL);
585 sigaction(SIGHUP, &action, NULL);
589 sigaction(SIGPIPE, &action, NULL);
595 sigaction(SIGTERM, &action, NULL);
/macosx-10.10.1/ipsec-286.1.1/ipsec-tools/racoon/
H A Dsession.c626 struct sigaction sa;
635 if (sigaction(sig, &sa, (struct sigaction *)0) < 0)
/macosx-10.10.1/nano-12/src/
H A Dnano.c49 static struct sigaction act;
972 memset(&act, 0, sizeof(struct sigaction));
974 sigaction(SIGINT, &act, NULL);
975 sigaction(SIGQUIT, &act, NULL);
979 sigaction(SIGHUP, &act, NULL);
980 sigaction(SIGTERM, &act, NULL);
985 sigaction(SIGWINCH, &act, NULL);
992 sigaction(SIGTSTP, &act, NULL);
999 sigaction(SIGTSTP, &act, NULL);
1002 sigaction(SIGCON
[all...]
/macosx-10.10.1/tcsh-65/tcsh/
H A Dsh.c85 struct sigaction parintr; /* Parents interrupt catch */
86 struct sigaction parterm; /* Parents terminate catch */
180 struct sigaction oparintr;
726 sigaction(SIGINT, NULL, &parintr);
727 sigaction(SIGTERM, NULL, &parterm);
1038 struct sigaction osig;
1058 sigaction(SIGHUP, NULL, &osig);
1063 sigaction(SIGXCPU, NULL, &osig);
1069 sigaction(SIGXFSZ, NULL, &osig);
1186 * handler is installed with signal(2) or sigset(2). sigaction(
[all...]
/macosx-10.10.1/Libc-1044.1.2/stdlib/FreeBSD/
H A Dsystem.c65 struct sigaction ign, intact, quitact;
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/contrib/slapd-modules/nssov/nss-pam-ldapd/
H A Dtio.c328 struct sigaction act,oldact;
329 /* set up sigaction */
330 memset(&act,0,sizeof(struct sigaction));
336 if (sigaction(SIGPIPE,&act,&oldact)!=0)
341 if (sigaction(SIGPIPE,&oldact,NULL)!=0)
/macosx-10.10.1/OpenSSL098-52/src/crypto/ui/
H A Dui_openssl.c122 * sigaction and fileno included. -pedantic would be more appropriate for
138 * are on a POSIX system and have sigaction and termios. */
279 static struct sigaction savsig[NX509_SIG];
588 struct sigaction sa;
617 sigaction(i,&sa,&savsig[i]);
651 sigaction(i,&savsig[i],NULL);
/macosx-10.10.1/apache-793/httpd/server/mpm/prefork/
H A Dprefork.c392 struct sigaction sa;
404 if (sigaction(SIGTERM, &sa, NULL) < 0)
405 ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, APLOGNO(00147) "sigaction(SIGTERM)");
407 if (sigaction(AP_SIG_GRACEFUL_STOP, &sa, NULL) < 0)
409 "sigaction(" AP_SIG_GRACEFUL_STOP_STRING ")");
412 if (sigaction(SIGINT, &sa, NULL) < 0)
413 ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, APLOGNO(00149) "sigaction(SIGINT)");
417 if (sigaction(SIGXCPU, &sa, NULL) < 0)
418 ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, APLOGNO(00150) "sigaction(SIGXCPU)");
425 if (sigaction(SIGXFS
[all...]
/macosx-10.10.1/emacs-93/emacs/src/s/
H A Ddgux.h249 extern struct sigaction act, oact;
/macosx-10.10.1/rsync-45/rsync/
H A Dcleanup.c35 static struct sigaction sigact;
/macosx-10.10.1/BerkeleyDB-21/db/examples_c/ex_rep/base/
H A Drep_base.c45 struct sigaction sigact;
161 if ((ret = sigaction(SIGPIPE, &sigact, NULL)) != 0) {
/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Drkpty.c381 struct sigaction sa;
387 sigaction(SIGALRM, &sa, NULL);
/macosx-10.10.1/apr-32/apr/apr/threadproc/unix/
H A Dsignals.c70 * Replace standard signal() with the more reliable sigaction equivalent
76 struct sigaction act, oact;
103 if (sigaction(signo, &act, &oact) < 0)
/macosx-10.10.1/configd-699.1.5/SystemConfiguration.fproj/
H A DSCDPlugin.c224 struct sigaction act;
262 if (sigaction(SIGCHLD, &act, NULL) == -1) {
263 perror("sigaction");
/macosx-10.10.1/cups-408/cups/backend/
H A Drunloop.c160 struct sigaction action; /* Actions for POSIX signals */
185 sigaction(SIGTERM, &action, NULL);
H A Dsocket.c90 struct sigaction action; /* Actions for POSIX signals */
109 sigaction(SIGPIPE, &action, NULL);
/macosx-10.10.1/sudo-73/src/auth/
H A Dsudo_auth.c174 (void) sigaction(SIGTSTP, &sa, &osa);
243 (void) sigaction(SIGTSTP, &osa, NULL);
/macosx-10.10.1/sudo-73/src/
H A Dmissing.h213 int sigaction __P((int sig, const sigaction_t *act, sigaction_t *oact));
228 typedef struct sigaction sigaction_t;

Completed in 300 milliseconds

12345678910