Searched refs:SIGHUP (Results 1 - 25 of 233) sorted by relevance

12345678910

/freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/probes/
H A Dtst.probestar.c39 (void)sigaddset(&set, SIGHUP);
/freebsd-12-stable/lib/libc/gen/
H A Dsiglist.c40 [SIGHUP] = "HUP",
75 [SIGHUP] = "Hangup",
H A Ddaemon.c55 /* A SIGHUP may be thrown when the parent exits below. */
59 osa_ok = __libc_sigaction(SIGHUP, &sa, &osa);
77 __libc_sigaction(SIGHUP, &osa, NULL);
H A Dreadpassphrase.c117 (void)__libc_sigaction(SIGHUP, &sa, &savehup);
155 (void)__libc_sigaction(SIGHUP, &savehup, NULL);
/freebsd-12-stable/contrib/libedit/
H A Dsig.h53 _DO(SIGHUP) \
/freebsd-12-stable/contrib/sendmail/libmilter/
H A Dsignal.c97 (void) sigaddset(&set, SIGHUP);
134 case SIGHUP:
170 (void) sigaddset(&set, SIGHUP);
/freebsd-12-stable/contrib/ncurses/include/
H A Dnc_mingw.h61 #define SIGHUP 1 macro
/freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/proc/
H A Dtst.discard.ksh41 args[2] == SIGHUP/
/freebsd-12-stable/tools/regression/sockets/sblock/
H A Dsblock.c123 if (kill(locking_recver_pid, SIGHUP) < 0) {
158 if (sigaction(SIGHUP, NULL, &sa) < 0)
159 err(-1, "FAIL: sigaction(SIGHUP, NULL, &sa)");
163 printf("SIGHUP restartable by default (cleared)\n");
166 if (sigaction(SIGHUP, &sa, NULL) < 0)
167 err(-1, "FAIL: sigaction(SIGHUP, &sa, NULL)");
170 if (signal(SIGHUP, signal_handler) == SIG_ERR)
171 err(-1, "FAIL: signal(SIGHUP)");
/freebsd-12-stable/contrib/sendmail/libsm/
H A Dsignal.c207 case SIGHUP:
276 mask |= sigmask(SIGHUP);
291 (void) sigset(SIGHUP, SIG_HOLD);
300 (void) sigset(SIGHUP, SIG_DFL);
311 (void) sigaddset(&sset, SIGHUP);
/freebsd-12-stable/contrib/tcsh/
H A Dtc.sig.h130 sigaction(SIGHUP, NULL, &(sv)[6]); \
138 sigaddset(&m__, SIGHUP); \
150 sigaction(SIGHUP, &(sv)[6], NULL); \
/freebsd-12-stable/contrib/tcp_wrappers/
H A Dshell_cmd.c71 * Systems with POSIX sessions may send a SIGHUP to grandchildren if the
75 signal(SIGHUP, SIG_IGN);
/freebsd-12-stable/contrib/xz/src/xz/
H A Dsignals.c60 #ifdef SIGHUP
61 SIGHUP,
/freebsd-12-stable/cddl/lib/libdtrace/
H A Dsignal.d28 inline int SIGHUP = 1;
29 #pragma D binding "1.0" SIGHUP
97 signal == SIGHUP ? "SIGHUP" :
/freebsd-12-stable/tools/boot/
H A Dci-qemu-test.sh22 trap - EXIT SIGINT SIGHUP SIGTERM SIGQUIT
94 trap tempdir_cleanup EXIT SIGINT SIGHUP SIGTERM SIGQUIT
/freebsd-12-stable/contrib/netbsd-tests/fs/nfs/
H A Dt_mountd.c52 "mountd handles SIGHUP");
101 kill(nfsargs->ta_childpid, SIGHUP);
/freebsd-12-stable/lib/libsysdecode/
H A Dsignal.c36 [SIGHUP] = "SIGHUP",
/freebsd-12-stable/libexec/rpc.rusersd/
H A Drusersd.c80 (void) signal(SIGHUP, cleanup);
/freebsd-12-stable/contrib/nvi/cl/
H A Dcl_main.c262 clp->killersig = SIGHUP;
306 if (sigaddset(&__sigblockset, SIGHUP) ||
307 setsig(SIGHUP, &clp->oact[INDX_HUP], h_hup) ||
322 if (setsig(SIGHUP, NULL, h_hup) ||
367 (void)sigaction(SIGHUP, NULL, &clp->oact[INDX_HUP]);
/freebsd-12-stable/contrib/ntp/lib/isc/unix/
H A Dapp.c311 * unexpected actions for SIGHUP, SIGINT, and SIGTERM from our parent
317 result = handle_signal(SIGHUP, SIG_DFL);
332 * Block SIGHUP, SIGINT, SIGTERM.
336 * will result in all threads having SIGHUP, SIGINT and SIGTERM
341 sigaddset(&sset, SIGHUP) != 0 ||
359 * Unblock SIGHUP, SIGINT, SIGTERM.
361 * If we're not using threads, we need to make sure that SIGHUP,
366 sigaddset(&sset, SIGHUP) != 0 ||
610 * Catch SIGHUP.
616 result = handle_signal(SIGHUP, reload_actio
[all...]
/freebsd-12-stable/contrib/gdb/gdb/
H A Devent-top.c128 #ifdef SIGHUP
885 SIGINT, SIGFPE, SIGQUIT, SIGTSTP, SIGHUP, SIGWINCH. These
919 #ifdef SIGHUP
920 if (signal (SIGHUP, handle_sighup) != SIG_IGN)
995 #ifdef SIGHUP
996 /* Tell the event loop what to do if SIGHUP is received.
1005 /* Called by the event loop to process a SIGHUP */
1012 signal (SIGHUP, SIG_DFL); /*FIXME: ??????????? */
1013 kill (getpid (), SIGHUP);
1010 kill (getpid (), SIGHUP); local
/freebsd-12-stable/bin/pax/
H A Dpax.c399 (sigaddset(&s_mask,SIGINT) < 0)||(sigaddset(&s_mask,SIGHUP) < 0) ||
410 if (setup_sig(SIGHUP, &n_hand) ||
/freebsd-12-stable/crypto/openssh/openbsd-compat/
H A Dreadpassphrase.c119 (void)sigaction(SIGHUP, &sa, &savehup);
161 (void)sigaction(SIGHUP, &savehup, NULL);
/freebsd-12-stable/sbin/reboot/
H A Dreboot.c190 (void)signal(SIGHUP, SIG_IGN);
256 errx(1, "%s%s", kill(1, SIGHUP) == -1 ? "(can't restart init): " : "",
/freebsd-12-stable/usr.bin/sdiff/
H A Dedit.c55 sighup = signal(SIGHUP, SIG_IGN);
75 (void)signal(SIGHUP, sighup);

Completed in 319 milliseconds

12345678910