Searched refs:SIGTERM (Results 76 - 100 of 273) sorted by relevance

1234567891011

/macosx-10.10.1/system_cmds-643.1.1/vipw.tproj/
H A Dpw_util.c122 (void)signal(SIGTERM, SIG_IGN);
/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A DtclPosixStr.c1009 #ifdef SIGTERM
1010 case SIGTERM: return "SIGTERM";
1144 #ifdef SIGTERM
1145 case SIGTERM: return "software termination signal";
/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A DtclPosixStr.c1013 #ifdef SIGTERM
1014 case SIGTERM: return "SIGTERM";
1146 #ifdef SIGTERM
1147 case SIGTERM: return "software termination signal";
/macosx-10.10.1/SmartCardServices-55111/src/PCSC/
H A Dpcscdaemon.c493 signal(SIGTERM, signal_trap);
585 signal(SIGTERM, signal_trap);
/macosx-10.10.1/apache-793/httpd/test/
H A Dtime-sem.c235 sigdelset(&accept_block_mask, SIGTERM);
331 sigdelset(&accept_block_mask, SIGTERM);
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-sh/
H A Dlibatf-sh.subr747 # Handler for the SIGTERM signal that registers its occurrence so that
752 Held_Signals="${Held_Signals} SIGTERM"
/macosx-10.10.1/mDNSResponder-561.1.1/mDNSPosix/
H A DProxyResponder.c22 #include <signal.h> // For SIGINT, SIGTERM
238 mDNSPosixListenForSignalInEventLoop(SIGTERM);
278 struct timeval timeout = { 0x3FFFFFFF, 0 }; // wait until SIGINT or SIGTERM
282 while ( !( sigismember( &signals, SIGINT) || sigismember( &signals, SIGTERM)));
/macosx-10.10.1/text_cmds-88/csplit/
H A Dcsplit.c154 sigaddset(&sa.sa_mask, SIGTERM);
157 sigaction(SIGTERM, &sa, NULL);
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Dsignal.h102 #define SIGTERM 15 /* software termination signal from kill */ macro
582 sigmask(SIGTERM)|sigmask(SIGSTOP)|\
/macosx-10.10.1/apache-793/httpd/server/mpm/prefork/
H A Dprefork.c404 if (sigaction(SIGTERM, &sa, NULL) < 0)
405 ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, APLOGNO(00147) "sigaction(SIGTERM)");
454 apr_signal(SIGTERM, sig_term);
587 * shutdown_pending is set when SIGTERM is received when running
744 apr_signal(SIGTERM, sig_term);
795 apr_signal(SIGTERM, just_die);
1100 if (ap_unixd_killpg(getpgrp(), SIGTERM) < 0) {
1101 ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, APLOGNO(00168) "killpg SIGTERM");
1103 ap_reclaim_child_processes(1, /* Start with SIGTERM */
1109 "caught SIGTERM, shuttin
1174 ap_unixd_killpg(getpgrp(), SIGTERM); local
[all...]
/macosx-10.10.1/curl-83.1.2/curl/tests/server/
H A Drtspd.c227 #ifdef SIGTERM
283 #ifdef SIGTERM
284 /* handle SIGTERM signal with our exit_signal_handler */
285 if((old_sigterm_handler = signal(SIGTERM, exit_signal_handler)) == SIG_ERR)
286 logmsg("cannot install SIGTERM handler: %s", strerror(errno));
288 siginterrupt(SIGTERM, 1);
317 #ifdef SIGTERM
319 (void)signal(SIGTERM, old_sigterm_handler);
1473 * must raise the same signal SIGINT or SIGTERM that we
H A Dsockfilt.c63 * If possible, signals SIGINT and SIGTERM will be handled by this program as an
67 * The 'exit_signal_handler' upon the first SIGINT or SIGTERM received signal
170 #ifdef SIGTERM
226 #ifdef SIGTERM
227 /* handle SIGTERM signal with our exit_signal_handler */
228 if((old_sigterm_handler = signal(SIGTERM, exit_signal_handler)) == SIG_ERR)
229 logmsg("cannot install SIGTERM handler: %s", strerror(errno));
231 siginterrupt(SIGTERM, 1);
260 #ifdef SIGTERM
262 (void)signal(SIGTERM, old_sigterm_handle
[all...]
H A Dtftpd.c245 #ifdef SIGTERM
385 #ifdef SIGTERM
386 /* handle SIGTERM signal with our exit_signal_handler */
387 if((old_sigterm_handler = signal(SIGTERM, exit_signal_handler)) == SIG_ERR)
388 logmsg("cannot install SIGTERM handler: %s", strerror(errno));
390 siginterrupt(SIGTERM, 1);
415 #ifdef SIGTERM
417 (void)signal(SIGTERM, old_sigterm_handler);
931 * must raise the same signal SIGINT or SIGTERM that we
/macosx-10.10.1/apache-793/httpd/server/
H A Dmpm_unix.c143 "sending a SIGTERM",
145 kill(pid, SIGTERM);
406 case SIGTERM:
815 send_signal(otherpid, SIGTERM);
/macosx-10.10.1/cups-408/cups/filter/
H A Drastertoepson.c1001 sigset(SIGTERM, CancelJob);
1007 sigaction(SIGTERM, &action, NULL);
1009 signal(SIGTERM, CancelJob);
H A Drastertolabel.c1151 sigset(SIGTERM, CancelJob);
1157 sigaction(SIGTERM, &action, NULL);
1159 signal(SIGTERM, CancelJob);
/macosx-10.10.1/postfix-255/postfix/src/postsuper/
H A Dpostsuper.c1045 (void) signal(SIGTERM, SIG_IGN);
1252 * XXX Don't enable SIGHUP or SIGTERM if it was ignored by the parent.
1261 if (signal(SIGTERM, SIG_IGN) == SIG_DFL)
1262 signal(SIGTERM, interrupted);
/macosx-10.10.1/procmail-14/procmail/src/
H A Dmisc.c75 { signal(SIGTERM,SIG_IGN);signal(SIGHUP,SIG_IGN);signal(SIGINT,SIG_IGN);
259 kill(pidchild,SIGTERM);
321 { qsignal(SIGTERM,srequeue);qsignal(SIGINT,sbounce);
/macosx-10.10.1/system_cmds-643.1.1/shutdown.tproj/
H A Dshutdown.c507 SIGTERM); /* single-user */
530 (void)kill(1, SIGTERM); /* to single-user */
632 (void)signal(SIGTERM, finish);
/macosx-10.10.1/uucp-11/uucp/unix/
H A Dcusub.c534 /* We hit the child with SIGTERM, give it two seconds to die, and
536 if (kill (iSchild, SIGTERM) < 0)
638 usset_signal (SIGTERM, uscu_child_handler, TRUE, (boolean *) NULL);
664 if (isig == SIGTERM)
/macosx-10.10.1/apache-793/httpd/server/mpm/mpmt_os2/
H A Dmpmt_os2_child.c460 signal(SIGTERM, SIG_DFL);
481 if (sigaction(SIGTERM, &sa, NULL) < 0)
482 ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, APLOGNO(00198) "sigaction(SIGTERM)");
/macosx-10.10.1/bind9-45.101/bind9/lib/tests/
H A Dt_api.c297 SIGTERM)
309 kill(T_pid, SIGTERM);
/macosx-10.10.1/cron-39/crontab/
H A Dcrontab.c490 f[2] = signal(SIGTERM, SIG_IGN);
494 signal(SIGTERM, f[2]);
/macosx-10.10.1/cups-408/cups/scheduler/
H A Dcups-deviced.c339 kill(backends[i].pid, SIGTERM);
670 if (status == SIGTERM)
/macosx-10.10.1/Heimdal-398.1.2/kadmin/
H A Dkadm_conn.c197 signal(SIGTERM, terminate);

Completed in 290 milliseconds

1234567891011