Searched refs:sigaction (Results 176 - 200 of 248) sorted by relevance

12345678910

/freebsd-10-stable/usr.sbin/rpc.statd/
H A Dstatd.c82 struct sigaction sa;
298 sigaction(SIGCHLD, &sa, NULL);
/freebsd-10-stable/usr.bin/dpv/
H A Ddpv.c261 struct sigaction act;
453 sigaction(SIGINT, &act, 0);
/freebsd-10-stable/contrib/tcsh/
H A Dsh.err.c492 const struct sigaction *sa;
495 sigaction(SIGINT, sa, NULL);
H A Dtc.os.c563 volatile struct sigaction old_sigsys_handler;
567 sigaction(SIGSYS, &old_sigsys_handler, NULL);
572 sigaction(SIGSYS, NULL, &old_sigsys_handler);
606 sigaction(SIGSYS, &old_sigsys_handler, NULL);
H A Dsh.proc.c1783 struct sigaction osa, nsa;
1807 if (sigaction(SIGSYNCH, &nsa, &osa))
1808 stderror(ERR_SYSTEM, "pfork: sigaction set", strerror(errno));
1849 sigaction(SIGTERM, &parterm, NULL);
1929 if (sigaction(SIGSYNCH, &osa, NULL))
1930 stderror(ERR_SYSTEM, "pfork parent: sigaction restore",
1969 struct sigaction old;
1975 sigaction(SIGTTOU, NULL, &old);
1980 sigaction(SIGTTOU, &old, NULL);
/freebsd-10-stable/sys/sys/
H A Dsyscall.mk295 sigaction.o \
H A Dsignal.h298 * Signal vector "template" used in sigaction call.
300 struct sigaction { struct
H A Dsyscallsubr.h235 int kern_sigaction(struct thread *td, int sig, struct sigaction *act,
236 struct sigaction *oact, int flags);
/freebsd-10-stable/contrib/gdb/gdb/
H A Dlin-lwp.c1798 struct sigaction action;
1812 sigaction (SIGCHLD, &action, NULL);
1858 struct sigaction action;
1883 sigaction (cancel, &action, NULL);
/freebsd-10-stable/tests/sys/kern/
H A Dreaper.c144 struct sigaction act;
159 r = sigaction(SIGCHLD, &act, NULL);
231 struct sigaction act;
245 r = sigaction(SIGCHLD, &act, NULL);
/freebsd-10-stable/libexec/ftpd/
H A Dftpd.c273 struct sigaction sa;
425 (void)sigaction(SIGXFSZ, &sa, NULL);
454 (void)sigaction(SIGCHLD, &sa, NULL);
542 (void)sigaction(SIGCHLD, &sa, NULL);
546 (void)sigaction(SIGURG, &sa, NULL);
551 (void)sigaction(SIGHUP, &sa, NULL);
552 (void)sigaction(SIGINT, &sa, NULL);
553 (void)sigaction(SIGQUIT, &sa, NULL);
554 (void)sigaction(SIGTERM, &sa, NULL);
557 (void)sigaction(SIGPIP
[all...]
/freebsd-10-stable/sys/kern/
H A Dkern_sig.c658 sigact_flag_test(struct sigaction *act, int flag)
673 * sigaction
681 struct sigaction *act, *oact;
828 struct sigaction *act;
829 struct sigaction *oact;
837 struct sigaction act, oact;
838 register struct sigaction *actp, *oactp;
858 struct sigaction *act;
859 struct sigaction *oact;
867 struct sigaction ac
[all...]
/freebsd-10-stable/cddl/contrib/dtracetoolkit/Docs/Examples/
H A Doneliners_examples.txt72 sigaction 2
/freebsd-10-stable/cddl/contrib/dtracetoolkit/Examples/
H A Doneliners_examples.txt72 sigaction 2
/freebsd-10-stable/contrib/ntp/lib/isc/unix/
H A Dapp.c205 struct sigaction sa;
212 sigaction(sig, &sa, NULL) < 0) {
/freebsd-10-stable/contrib/xz/src/xz/
H A Dmessage.c141 struct sigaction sa;
147 if (sigaction(message_progress_sigs[i], &sa, NULL))
/freebsd-10-stable/contrib/amd/libamu/
H A Dxutil.c1033 struct sigaction sa;
1039 sigaction(signum, &sa, NULL);
/freebsd-10-stable/usr.sbin/rpc.lockd/
H A Dlockd.c123 struct sigaction sigalarm;
442 if (sigaction(SIGALRM, &sigalarm, NULL) != 0) {
443 syslog(LOG_WARNING, "sigaction(SIGALRM) failed: %s",
/freebsd-10-stable/crypto/heimdal/appl/ftp/ftp/
H A Dftp.c331 struct sigaction sa, osa;
339 sigaction (SIGINT, &sa, &osa);
349 sigaction (SIGINT, &osa, NULL);
399 sigaction (SIGINT, &osa, NULL);
/freebsd-10-stable/sbin/ping/
H A Dping.c225 struct sigaction si_sa;
762 * Use sigaction() instead of signal() to get unambiguous semantics,
770 if (sigaction(SIGINT, &si_sa, 0) == -1) {
771 err(EX_OSERR, "sigaction SIGINT");
775 if (sigaction(SIGINFO, &si_sa, 0) == -1) {
776 err(EX_OSERR, "sigaction");
781 if (sigaction(SIGALRM, &si_sa, 0) == -1)
782 err(EX_OSERR, "sigaction SIGALRM");
/freebsd-10-stable/lib/libc/gen/
H A Dposix_spawn.c88 struct sigaction sigact = { .sa_flags = 0, .sa_handler = SIG_DFL };
/freebsd-10-stable/contrib/atf/atf-c/detail/
H A Dprocess_test.c747 struct sigaction sighup, old_sighup;
771 if (sigaction(SIGHUP, &sighup, &old_sighup) == -1)
794 sigaction(SIGHUP, &old_sighup, NULL);
/freebsd-10-stable/crypto/heimdal/kpasswd/
H A Dkpasswdd.c884 struct sigaction sa;
890 sigaction(SIGINT, &sa, NULL);
891 sigaction(SIGTERM, &sa, NULL);
/freebsd-10-stable/lib/libkse/thread/
H A Dthr_private.h1060 SCLASS struct sigaction _thread_sigact[_SIG_MAXSIG];
1235 int __sys_sigaction(int, const struct sigaction *, struct sigaction *);
H A Dthr_sig.c309 struct sigaction act;
441 struct sigaction act;
693 * signal, and sigaction is SIG_DFL, then we will
1177 struct sigaction act;

Completed in 168 milliseconds

12345678910