HomeSort by: relevance | last modified time | path
    Searched refs:sigterm (Results 1 - 17 of 17) sorted by relevancy

  /src/crypto/external/bsd/heimdal/dist/kdc/
main.c 59 sigterm(int sig) function
142 sa.sa_handler = sigterm;
146 sigaction(SIGTERM, &sa, NULL);
162 signal(SIGINT, sigterm);
163 signal(SIGTERM, sigterm);
168 signal(SIGXCPU, sigterm);
  /src/external/bsd/kyua-cli/dist/utils/process/
status_test.cpp 136 const status sigterm = fork_and_wait(child_signal< SIGTERM >); local
137 ATF_REQUIRE(!sigterm.exited());
138 ATF_REQUIRE(sigterm.signaled());
139 ATF_REQUIRE_EQ(SIGTERM, sigterm.termsig());
140 ATF_REQUIRE(!sigterm.coredump());
  /src/crypto/external/bsd/heimdal/dist/lib/kadm5/
ipropd_common.c 46 sigterm(int sig) function
59 sa.sa_handler = sigterm;
63 sigaction(SIGTERM, &sa, NULL);
70 signal(SIGINT, sigterm);
71 signal(SIGTERM, sigterm);
73 signal(SIGXCPU, sigterm);
170 kill(pid, SIGTERM);
243 case SIGTERM:
  /src/external/bsd/am-utils/dist/amd/
amd.c 85 * SIGTERM - tells amd to shutdown now. Just unmounts the automount nodes.
88 sigterm(int sig) function
91 signal(sig, sigterm);
99 case SIGTERM:
466 setup_sighandler(SIGINT, sigterm);
467 /* SIGTERM: trap terminate so we can shutdown cleanly (some chance) */
468 setup_sighandler(SIGTERM, sigterm);
480 sigaddset(&masked_sigs, SIGTERM);
  /src/external/mpl/bind/dist/bin/tests/system/resolver/ans10/
ans.py 75 def sigterm(signum, frame): function
109 signal.signal(signal.SIGTERM, sigterm)
  /src/external/mpl/bind/dist/bin/tests/system/shutdown/
tests_shutdown.py 50 if kill_method=="sigterm" named will be killed by SIGTERM on
62 :kill_method: "rndc" or "sigterm"
131 # named process exited gracefully after SIGTERM signal.
158 # Method 2: killing with SIGTERM
162 ["rndc", "sigterm"],
  /src/external/mpl/bind/dist/bin/tests/system/tcp/ans6/
ans.py 111 def sigterm(*_): function
112 log("SIGTERM received, shutting down")
120 signal.signal(signal.SIGTERM, sigterm)
  /src/external/mpl/bind/dist/bin/tests/system/pipelined/ans5/
ans.py 55 def sigterm(*_): function
56 log("SIGTERM received, shutting down")
171 signal.signal(signal.SIGTERM, sigterm)
172 signal.signal(signal.SIGINT, sigterm)
  /src/external/mpl/bind/dist/lib/isc/
loop_p.h 101 isc_signal_t *sigterm; member in struct:isc_loopmgr
loop.c 85 case SIGTERM:
175 isc_signal_stop(loopmgr->sigterm);
179 isc_signal_destroy(&loopmgr->sigterm);
413 loopmgr->sigterm = isc_signal_new(loopmgr, isc__loopmgr_signal, loopmgr,
414 SIGTERM);
417 isc_signal_start(loopmgr->sigterm);
663 isc_signal_stop(loopmgr->sigterm);
672 isc_signal_start(loopmgr->sigterm);
  /src/external/mpl/bind/dist/bin/tests/system/digdelv/ans8/
ans.py 60 def sigterm(signum, frame): function
92 signal.signal(signal.SIGTERM, sigterm)
  /src/games/hunt/hunt/
hunt.c 106 static void sigterm(int) __dead;
283 (void) signal(SIGTERM, sigterm);
528 * sigterm:
532 sigterm(int dummy __unused) function
  /src/sbin/routed/
main.c 281 signal(SIGHUP, sigterm); /* SIGHUP fatal during debugging */
282 signal(SIGTERM, sigterm);
283 signal(SIGINT, sigterm);
555 sigterm(int sig) function
defs.h 586 extern void sigterm(int);
  /src/crypto/external/bsd/heimdal/dist/kpasswd/
kpasswdd.c 868 sigterm(int sig) function
977 sa.sa_handler = sigterm;
981 sigaction(SIGTERM, &sa, NULL);
984 signal(SIGINT, sigterm);
985 signal(SIGTERM, sigterm);
  /src/external/bsd/ppp/dist/chat/
chat.c 214 SIGTYPE sigterm (int signo);
533 SIGTYPE sigterm(int signo) function
535 fatalsig = "SIGTERM";
569 sa.sa_handler = sigterm;
570 sigaction(SIGTERM, &sa, NULL);
  /src/external/apache2/mDNSResponder/dist/Clients/dnssdutil/
dnssdutil.c 6214 dispatch_source_t sourceSigTerm; // Dispatch source for SIGTERM.
6290 signal( SIGTERM, SIG_IGN );
6291 err = DispatchSignalSourceCreate( SIGTERM, cmd->queue, _RegisterKACmdSignalHandler, cmd, &cmd->sourceSigTerm );
8466 dispatch_source_t sourceSigTerm; // Dispatch source for SIGTERM.
8743 signal( SIGTERM, SIG_IGN );
8744 err = DispatchSignalSourceCreate( SIGTERM, cmd->queue, _DNSServerCmdSIGTERMHandler, cmd, &cmd->sourceSigTerm );
8976 _DNSServerCmdShutdown( (DNSServerCmd *) inCtx, SIGTERM );
8997 case SIGTERM: sigName = "SIGTERM"; break;
14691 dispatch_source_t sigTermSource; // Dispatch source for SIGTERM
33404 dispatch_source_t sigterm; \/\/ Dispatch source for SIGTERM. member in struct:__anon5969
    [all...]

Completed in 62 milliseconds