bin/csh/csh.c
203
struct sigaction oact;
bin/csh/csh.c
367
(void)sigaction(SIGINT, NULL, &oact);
bin/csh/csh.c
369
(void)sigaction(SIGTERM, NULL, &oact);
bin/ksh/trap.c
25
static struct sigaction Sigact_ign, Sigact_trap;
bin/ksh/trap.c
381
struct sigaction sigact;
bin/ksh/trap.c
390
sigaction(p->signal, &Sigact_ign, &sigact);
bin/ksh/trap.c
422
sigaction(p->signal, &sigact, (struct sigaction *) 0);
bin/pax/pax.c
387
struct sigaction n_hand;
bin/pax/pax.c
388
struct sigaction o_hand;
bin/pax/pax.c
463
if ((sigaction(SIGHUP, &n_hand, &o_hand) < 0) &&
bin/pax/pax.c
465
(sigaction(SIGHUP, &o_hand, NULL) < 0))
bin/pax/pax.c
468
if ((sigaction(SIGTERM, &n_hand, &o_hand) < 0) &&
bin/pax/pax.c
470
(sigaction(SIGTERM, &o_hand, NULL) < 0))
bin/pax/pax.c
473
if ((sigaction(SIGINT, &n_hand, &o_hand) < 0) &&
bin/pax/pax.c
475
(sigaction(SIGINT, &o_hand, NULL) < 0))
bin/pax/pax.c
478
if ((sigaction(SIGQUIT, &n_hand, &o_hand) < 0) &&
bin/pax/pax.c
480
(sigaction(SIGQUIT, &o_hand, NULL) < 0))
bin/pax/pax.c
484
if ((sigaction(SIGXCPU, &n_hand, &o_hand) < 0) &&
bin/pax/pax.c
486
(sigaction(SIGXCPU, &o_hand, NULL) < 0))
bin/pax/pax.c
490
if (sigaction(SIGPIPE, &n_hand, &o_hand) < 0)
bin/pax/pax.c
493
if (sigaction(SIGXFSZ, &n_hand, &o_hand) < 0)
bin/sh/jobs.c
1014
struct sigaction sig_dfl, sig_was;
bin/sh/jobs.c
1020
(void)sigaction(sig, &sig_dfl, &sig_was);
bin/sh/jobs.c
1024
(void)sigaction(sig, &sig_was, NULL);
bin/sh/jobs.c
1028
(void)sigaction(sig, &sig_was, NULL);
bin/sh/trap.c
648
struct sigaction sa;
bin/sh/trap.c
650
if (sigaction(signo, (struct sigaction *)0, &sa) == -1)
crypto/dist/ipsec-tools/src/racoon/session.c
510
struct sigaction sa;
crypto/dist/ipsec-tools/src/racoon/session.c
519
if (sigaction(sig, &sa, (struct sigaction *)0) < 0)
distrib/utils/ssh/ssh.c
100
struct sigaction sa;
distrib/utils/ssh/ssh.c
173
sigaction(SIGINT, &sa, NULL);
distrib/utils/ssh/ssh.c
174
sigaction(SIGQUIT, &sa, NULL);
distrib/utils/ssh/ssh.c
175
sigaction(SIGTERM, &sa, NULL);
distrib/utils/ssh/ssh.c
419
struct sigaction sa;
distrib/utils/ssh/ssh.c
494
sigaction(SIGINT, &sa, NULL);
distrib/utils/ssh/ssh.c
495
sigaction(SIGQUIT, &sa, NULL);
games/atc/main.c
182
(void)sigaction(SIGALRM, &sa, (struct sigaction *)0);
games/atc/main.c
88
struct sigaction sa;
include/signal.h
69
int __sigaction_siginfo(int, const struct sigaction * __restrict,
include/signal.h
70
struct sigaction * __restrict);
include/signal.h
85
int sigaction(int, const struct sigaction * __restrict,
include/signal.h
86
struct sigaction * __restrict) __RENAME(__sigaction_siginfo);
lib/libc/compat-43/sigcompat.c
45
static inline void sv2sa(struct sigaction *, const struct sigvec *);
lib/libc/compat-43/sigcompat.c
46
static inline void sa2sv(struct sigvec *, const struct sigaction *);
lib/libc/compat-43/sigcompat.c
49
sv2sa(struct sigaction *sa, const struct sigvec *sv)
lib/libc/compat-43/sigcompat.c
58
sa2sv(struct sigvec *sv, const struct sigaction *sa)
lib/libc/compat-43/sigcompat.c
69
struct sigaction osa, nsa;
lib/libc/compat-43/sigcompat.c
74
ret = sigaction(signo, nsv ? &nsa : NULL, osv ? &osa : NULL);
lib/libc/compat/arch/powerpc64/sys/compat_missing.c
42
__warn_references(sigaction,
lib/libc/compat/arch/powerpc64/sys/compat_missing.c
51
int sigaction(int, const struct sigaction * restrict,
lib/libc/compat/arch/powerpc64/sys/compat_missing.c
52
struct sigaction * restrict);
lib/libc/compat/arch/powerpc64/sys/compat_missing.c
53
int __sigaction_siginfo(int, const struct sigaction * restrict,
lib/libc/compat/arch/powerpc64/sys/compat_missing.c
54
struct sigaction * restrict);
lib/libc/compat/arch/powerpc64/sys/compat_missing.c
57
sigaction(int sig, const struct sigaction * restrict act,
lib/libc/compat/arch/powerpc64/sys/compat_missing.c
58
struct sigaction * restrict oact)
lib/libc/compat/include/signal.h
46
int sigaction(int, const struct sigaction13 * __restrict,
lib/libc/compat/include/signal.h
48
int __sigaction_siginfo(int, const struct sigaction * __restrict,
lib/libc/compat/include/signal.h
49
struct sigaction * __restrict);
lib/libc/compat/include/signal.h
77
int __libc_sigaction14(int, const struct sigaction *, struct sigaction *);
lib/libc/compat/sys/compat___sigaction14_sigtramp.c
51
__libc_sigaction14(int sig, const struct sigaction *act, struct sigaction *oact)
lib/libc/gen/sigignore.c
44
struct sigaction sa;
lib/libc/gen/sigignore.c
51
return (sigaction(sig, &sa, NULL));
lib/libc/gen/siginterrupt.c
56
struct sigaction sa;
lib/libc/gen/siginterrupt.c
59
if ((ret = sigaction(sig, (struct sigaction *)0, &sa)) < 0)
lib/libc/gen/siginterrupt.c
68
return (sigaction(sig, &sa, (struct sigaction *)0));
lib/libc/gen/signal.c
57
struct sigaction sa, osa;
lib/libc/gen/signal.c
64
if (sigaction(s, &sa, &osa) < 0)
lib/libc/gen/signal.c
72
struct sigaction act, oact;
lib/libc/gen/signal.c
79
if (sigaction(sig, &act, &oact) < 0)
lib/libc/gen/sigset.c
46
struct sigaction sa, osa;
lib/libc/gen/sigset.c
64
(void)sigaction(sig, NULL, &osa);
lib/libc/gen/sigset.c
75
if (sigaction(sig, &sa, &osa) != 0) {
lib/libc/include/extern.h
54
struct sigaction;
lib/libc/include/extern.h
55
int __sigaction_sigtramp(int, const struct sigaction *,
lib/libc/include/extern.h
56
struct sigaction *, const void *, int);
lib/libc/misc/stack_protector.c
103
(void)sigaction(SIGABRT, &sa, NULL);
lib/libc/misc/stack_protector.c
84
struct sigaction sa;
lib/libc/stdlib/system.c
136
out: sigaction(SIGINT, &intsa, NULL);
lib/libc/stdlib/system.c
137
sigaction(SIGQUIT, &quitsa, NULL);
lib/libc/stdlib/system.c
57
struct sigaction intsa, quitsa, sa;
lib/libc/stdlib/system.c
78
if (sigaction(SIGINT, &sa, &intsa) == -1)
lib/libc/stdlib/system.c
80
if (sigaction(SIGQUIT, &sa, &quitsa) == -1) {
lib/libc/stdlib/system.c
81
sigaction(SIGINT, &intsa, NULL);
lib/libc/stdlib/system.c
88
sigaction(SIGINT, &intsa, NULL);
lib/libc/stdlib/system.c
89
sigaction(SIGQUIT, &quitsa, NULL);
lib/libc/sys/Lint___sigaction_siginfo.c
7
__sigaction_siginfo(int sig, const struct sigaction *nact,
lib/libc/sys/Lint___sigaction_siginfo.c
8
struct sigaction *oact)
lib/libc/sys/__sigaction_siginfo.c
56
__sigaction_siginfo(int sig, const struct sigaction *act,
lib/libc/sys/__sigaction_siginfo.c
57
struct sigaction *oact)
lib/libc/time/zic.c
1141
struct sigaction act0, act;
lib/libc/time/zic.c
1145
if (sigaction(signals[i], &act, &act0) == 0
lib/libc/time/zic.c
1147
sigaction(signals[i], &act0, NULL);
lib/libcurses/tstp.c
168
struct sigaction sa;
lib/libcurses/tstp.c
173
sigaction(SIGWINCH, &sa, &owsa);
lib/libcurses/tstp.c
190
struct sigaction cwsa;
lib/libcurses/tstp.c
192
sigaction(SIGWINCH, NULL, &cwsa);
lib/libcurses/tstp.c
194
sigaction(SIGWINCH, &owsa, NULL);
lib/libcurses/tstp.c
57
static struct sigaction owsa;
lib/libedit/sig.c
105
(void) sigaction(signo, &sel->el_signal->sig_action[i], NULL);
lib/libedit/sig.c
167
struct sigaction osa, nsa;
lib/libedit/sig.c
178
if (sigaction(sighdl[i], &nsa, &osa) != -1 &&
lib/libedit/sig.c
199
(void)sigaction(sighdl[i],
lib/libedit/sig.h
60
struct sigaction sig_action[ALLSIGSNO];
lib/librefuse/refuse_signals.c
121
struct sigaction* saved;
lib/librefuse/refuse_signals.c
122
struct sigaction act;
lib/librefuse/refuse_signals.c
128
if (sigaction(sig, NULL, saved) != 0) {
lib/librefuse/refuse_signals.c
155
return sigaction(sig, &act, NULL);
lib/librefuse/refuse_signals.c
160
struct sigaction oact;
lib/librefuse/refuse_signals.c
161
struct sigaction* saved;
lib/librefuse/refuse_signals.c
166
if (sigaction(sig, NULL, &oact) != 0)
lib/librefuse/refuse_signals.c
180
if (sigaction(sig, saved, NULL) != 0)
lib/librefuse/refuse_signals.c
192
struct sigaction* saved;
lib/librefuse/refuse_signals.c
82
static struct sigaction* saved_actions[NSIG];
lib/libutil/raise_default_signal.c
104
(void)sigaction(sig, &origact, NULL);
lib/libutil/raise_default_signal.c
66
struct sigaction origact, act;
lib/libutil/raise_default_signal.c
89
if (sigaction(sig, &act, &origact) == -1)
libexec/ftpd/ftpd.c
2390
struct sigaction sa, sa_saved;
libexec/ftpd/ftpd.c
2397
(void) sigaction(SIGALRM, &sa, &sa_saved);
libexec/ftpd/ftpd.c
2558
(void) sigaction(SIGALRM, &sa_saved, NULL);
libexec/ftpd/ftpd.c
294
struct sigaction sa;
libexec/ftpd/ftpd.c
522
(void)sigaction(SIGCHLD, &sa, NULL);
libexec/ftpd/ftpd.c
697
(void) sigaction(SIGCHLD, &sa, NULL);
libexec/ftpd/ftpd.c
702
(void) sigaction(SIGHUP, &sa, NULL);
libexec/ftpd/ftpd.c
703
(void) sigaction(SIGINT, &sa, NULL);
libexec/ftpd/ftpd.c
704
(void) sigaction(SIGQUIT, &sa, NULL);
libexec/ftpd/ftpd.c
705
(void) sigaction(SIGTERM, &sa, NULL);
libexec/ftpd/ftpd.c
707
(void) sigaction(SIGPIPE, &sa, NULL);
libexec/ftpd/ftpd.c
709
(void) sigaction(SIGALRM, &sa, NULL);
libexec/ftpd/ftpd.c
711
(void) sigaction(SIGURG, &sa, NULL);
libexec/httpd/bozohttpd.c
611
struct sigaction sa;
libexec/httpd/bozohttpd.c
690
sigaction(SIGALRM, &sa, NULL);
regress/sys/arch/arm/sigstackalign/sigstackalign.c
52
struct sigaction sa;
regress/sys/arch/arm/sigstackalign/sigstackalign.c
60
if (sigaction(SIGUSR1, &sa, NULL) != 0)
sbin/init/init.c
228
struct sigaction sa;
sbin/init/init.c
316
(void)sigaction(SIGTTIN, &sa, NULL);
sbin/init/init.c
317
(void)sigaction(SIGTTOU, &sa, NULL);
sbin/init/init.c
356
struct sigaction sa;
sbin/init/init.c
369
(void)sigaction(sig, &sa, NULL);
sbin/init/init.c
649
struct sigaction sa, satstp, sahup;
sbin/init/init.c
678
(void)sigaction(SIGTSTP, &sa, &satstp);
sbin/init/init.c
679
(void)sigaction(SIGHUP, &sa, &sahup);
sbin/init/init.c
768
(void)sigaction(SIGTSTP, &satstp, NULL);
sbin/init/init.c
769
(void)sigaction(SIGHUP, &sahup, NULL);
sbin/init/init.c
792
(void)sigaction(SIGTSTP, &satstp, NULL);
sbin/init/init.c
793
(void)sigaction(SIGHUP, &sahup, NULL);
sbin/init/init.c
808
(void)sigaction(SIGTSTP, &satstp, NULL);
sbin/init/init.c
809
(void)sigaction(SIGHUP, &sahup, NULL);
sbin/init/init.c
815
(void)sigaction(SIGTSTP, &satstp, NULL);
sbin/init/init.c
816
(void)sigaction(SIGHUP, &sahup, NULL);
sbin/init/init.c
833
struct sigaction sa;
sbin/init/init.c
840
(void)sigaction(SIGTSTP, &sa, NULL);
sbin/init/init.c
841
(void)sigaction(SIGHUP, &sa, NULL);
sbin/iscsid/iscsid_main.c
532
struct sigaction sa;
sbin/iscsid/iscsid_main.c
565
sigaction(SIGINT, &sa, NULL);
sbin/iscsid/iscsid_main.c
566
sigaction(SIGTERM, &sa, NULL);
sbin/ping/ping.c
256
struct sigaction sa;
sbin/ping/ping.c
719
(void)sigaction(SIGINFO, &sa, NULL);
sys/arch/aarch64/aarch64/netbsd32_machdep.c
311
const struct sigaction * const sa = &SIGACTION(p, signo);
sys/arch/amd64/amd64/netbsd32_machdep.c
221
const struct sigaction *sa = &SIGACTION(p, sig);
sys/arch/usermode/include/thunk.h
135
int thunk_sigaction(int, const struct sigaction *, struct sigaction *);
sys/arch/usermode/usermode/thunk.c
580
thunk_sigaction(int sig, const struct sigaction *act, struct sigaction *oact)
sys/arch/usermode/usermode/thunk.c
582
return sigaction(sig, act, oact);
sys/arch/usermode/usermode/thunk.c
594
struct sigaction sa;
sys/arch/usermode/usermode/thunk.c
599
sigaction(sig, &sa, NULL);
sys/arch/usermode/usermode/trap.c
404
static struct sigaction sa;
sys/compat/common/kern_sig_13.c
101
native_sigaction_to_sigaction13(const struct sigaction *sa, struct sigaction13 *osa)
sys/compat/common/kern_sig_13.c
129
struct sigaction nbsa, obsa;
sys/compat/common/kern_sig_13.c
91
native_sigaction13_to_sigaction(const struct sigaction13 *osa, struct sigaction *sa)
sys/compat/common/kern_sig_16.c
131
struct sigaction nsa, osa;
sys/compat/common/kern_sig_43.c
104
compat_43_sigvec_to_sigaction(const struct sigvec *sv, struct sigaction *sa)
sys/compat/common/kern_sig_43.c
114
compat_43_sigaction_to_sigvec(const struct sigaction *sa, struct sigvec *sv)
sys/compat/common/kern_sig_43.c
235
struct sigaction nsa, osa;
sys/compat/common/kern_sig_43.c
71
void compat_43_sigvec_to_sigaction(const struct sigvec *, struct sigaction *);
sys/compat/common/kern_sig_43.c
72
void compat_43_sigaction_to_sigvec(const struct sigaction *, struct sigvec *);
sys/compat/freebsd/freebsd_misc.c
165
struct sigaction nbsa, obsa;
sys/compat/linux/common/linux_sig_notalpha.c
76
struct sigaction nbsa, obsa;
sys/compat/linux/common/linux_sigaction.c
74
struct sigaction nbsa, obsa;
sys/compat/linux/common/linux_signal.c
276
linux_old_to_native_sigaction(struct sigaction *bsa, const struct linux_old_sigaction *lsa)
sys/compat/linux/common/linux_signal.c
286
native_to_linux_old_sigaction(struct linux_old_sigaction *lsa, const struct sigaction *bsa)
sys/compat/linux/common/linux_signal.c
301
linux_to_native_sigaction(struct sigaction *bsa, const struct linux_sigaction *lsa)
sys/compat/linux/common/linux_signal.c
311
native_to_linux_sigaction(struct linux_sigaction *lsa, const struct sigaction *bsa)
sys/compat/linux/common/linux_signal.c
340
struct sigaction nbsa, obsa;
sys/compat/linux/common/linux_signal.h
100
void linux_to_native_sigaction(struct sigaction *,
sys/compat/linux/common/linux_signal.h
103
const struct sigaction *);
sys/compat/linux/common/linux_signal.h
94
void linux_old_to_native_sigaction(struct sigaction *,
sys/compat/linux/common/linux_signal.h
97
const struct sigaction *);
sys/compat/linux32/common/linux32_signal.c
218
linux32_to_native_sigaction(struct sigaction *bsa, const struct linux32_sigaction *lsa)
sys/compat/linux32/common/linux32_signal.c
227
native_to_linux32_sigaction(struct linux32_sigaction *lsa, const struct sigaction *bsa)
sys/compat/linux32/common/linux32_signal.c
285
struct sigaction ns;
sys/compat/linux32/common/linux32_signal.c
286
struct sigaction os;
sys/compat/linux32/common/linux32_signal.c
521
struct sigaction nbsa, obsa;
sys/compat/linux32/common/linux32_signal.h
54
void linux32_to_native_sigaction(struct sigaction *,
sys/compat/linux32/common/linux32_signal.h
57
const struct sigaction *);
sys/compat/netbsd32/netbsd32_compat_43.c
626
struct sigaction nsa, osa;
sys/compat/netbsd32/netbsd32_signal.c
124
struct sigaction nsa, osa;
sys/compat/netbsd32/netbsd32_signal.c
165
struct sigaction nsa, osa;
sys/compat/netbsd32/netbsd32_signal.c
70
struct sigaction nsa, osa;
sys/compat/sunos/sunos_misc.c
1073
struct sigaction nsa, osa;
sys/compat/sunos/sunos_misc.c
1076
(const struct sigvec *, struct sigaction *);
sys/compat/sunos/sunos_misc.c
1078
(const struct sigaction *, struct sigvec *);
sys/compat/sunos32/sunos32_misc.c
1310
struct sigaction nsa, osa;
sys/compat/sunos32/sunos32_misc.c
142
static void sunos32_sigvec_to_sigaction(const struct netbsd32_sigvec *, struct sigaction *);
sys/compat/sunos32/sunos32_misc.c
143
static void sunos32_sigvec_from_sigaction(struct netbsd32_sigvec *, const struct sigaction *);
sys/compat/sunos32/sunos32_misc.c
148
sunos32_sigvec_to_sigaction(const struct netbsd32_sigvec *sv, struct sigaction *sa)
sys/compat/sunos32/sunos32_misc.c
160
const struct sigaction *sa)
sys/compat/sys/signalvar.h
44
struct sigaction *);
sys/compat/sys/signalvar.h
45
void native_sigaction_to_sigaction13(const struct sigaction *,
sys/compat/ultrix/ultrix_misc.c
602
struct sigaction nsa, osa;
sys/kern/kern_exec.c
2223
struct sigaction sigact;
sys/kern/sys_sig.c
103
struct sigaction nsa, osa;
sys/kern/sys_sig.c
382
sigaction1(struct lwp *l, int signum, const struct sigaction *nsa,
sys/kern/sys_sig.c
383
struct sigaction *osa, const void *tramp, int vers)
sys/sys/signalvar.h
104
sigaction_copy(struct sigaction *dst, const struct sigaction *src)
sys/sys/signalvar.h
155
void setsigvec(struct proc *, int, struct sigaction *);
sys/sys/signalvar.h
161
int sigaction1(struct lwp *, int, const struct sigaction *,
sys/sys/signalvar.h
162
struct sigaction *, const void *, int);
sys/sys/signalvar.h
61
struct sigaction sd_sigact;
sys/sys/syscallargs.h
1903
syscallarg(const struct sigaction *) nsa;
sys/sys/syscallargs.h
1904
syscallarg(struct sigaction *) osa;
sys/sys/syscallargs.h
2176
syscallarg(const struct sigaction *) nsa;
sys/sys/syscallargs.h
2177
syscallarg(struct sigaction *) osa;
tests/fs/common/fstest_ffs.c
64
struct sigaction act, oact;
tests/fs/common/fstest_ffs.c
70
sigaction(SIGCHLD, &act, &oact);
tests/fs/common/fstest_ffs.c
72
sigaction(SIGCHLD, &oact, NULL);
tests/fs/common/fstest_udf.c
64
struct sigaction act, oact;
tests/fs/common/fstest_udf.c
73
sigaction(SIGCHLD, &act, &oact);
tests/fs/common/fstest_udf.c
75
sigaction(SIGCHLD, &oact, NULL);
tests/fs/fifofs/t_fifo.c
107
if (sigaction(SIGCHLD, &action, NULL) == -1)
tests/fs/fifofs/t_fifo.c
99
struct sigaction action;
tests/kernel/h_segv.c
265
struct sigaction sa;
tests/kernel/h_segv.c
270
if (sigaction(sig, &sa, NULL) == -1)
tests/kernel/h_segv.c
284
struct sigaction sa;
tests/kernel/h_segv.c
289
if (sigaction(sig, &sa, NULL) == -1)
tests/kernel/t_open_pr_57260.c
70
struct sigaction sa;
tests/kernel/t_open_pr_57260.c
77
if (sigaction(SIGALRM, &sa, NULL) == -1)
tests/kernel/t_signal_and_fpu.c
78
struct sigaction sa;
tests/kernel/t_signal_and_fpu.c
89
RL(sigaction(SIGUSR1, &sa, NULL));
tests/kernel/t_signal_and_sp.c
388
struct sigaction sa;
tests/kernel/t_signal_and_sp.c
392
RL(sigaction(SIGUSR1, &sa, NULL));
tests/kernel/t_signal_and_sp.c
417
struct sigaction sa;
tests/kernel/t_signal_and_sp.c
424
RL(sigaction(SIGUSR1, &sa, NULL));
tests/kernel/t_signal_and_sp.c
572
struct sigaction sa;
tests/kernel/t_signal_and_sp.c
575
RL(sigaction(SIGALRM, &sa, NULL));
tests/kernel/t_sysv.c
184
struct sigaction sa;
tests/kernel/t_sysv.c
200
ATF_REQUIRE_MSG(sigaction(SIGSYS, &sa, NULL) != -1,
tests/kernel/t_sysv.c
404
struct sigaction sa;
tests/kernel/t_sysv.c
421
ATF_REQUIRE_MSG(sigaction(SIGSYS, &sa, NULL) != -1,
tests/kernel/t_sysv.c
610
struct sigaction sa;
tests/kernel/t_sysv.c
625
ATF_REQUIRE_MSG(sigaction(SIGSYS, &sa, NULL) != -1,
tests/lib/libc/gen/posix_spawn/h_spawnattr.c
51
struct sigaction act;
tests/lib/libc/gen/posix_spawn/h_spawnattr.c
64
if (sigaction(SIGUSR1, NULL, &act) < 0) {
tests/lib/libc/gen/t_assert.c
111
struct sigaction sa;
tests/lib/libc/gen/t_assert.c
122
(void)memset(&sa, 0, sizeof(struct sigaction));
tests/lib/libc/gen/t_assert.c
128
(void)sigaction(SIGABRT, &sa, 0);
tests/lib/libc/gen/t_assert.c
73
struct sigaction sa;
tests/lib/libc/gen/t_assert.c
84
(void)memset(&sa, 0, sizeof(struct sigaction));
tests/lib/libc/gen/t_assert.c
90
(void)sigaction(SIGABRT, &sa, 0);
tests/lib/libc/gen/t_fpsetmask.c
231
struct sigaction sa;
tests/lib/libc/gen/t_fpsetmask.c
243
sigaction(SIGFPE, &sa, 0);
tests/lib/libc/gen/t_fpsetmask.c
268
struct sigaction sa;
tests/lib/libc/gen/t_fpsetmask.c
280
sigaction(SIGFPE, &sa, 0);
tests/lib/libc/gen/t_raise.c
103
struct sigaction sa;
tests/lib/libc/gen/t_raise.c
115
ATF_REQUIRE(sigaction(SIGUSR1, &sa, 0) == 0);
tests/lib/libc/gen/t_raise.c
131
struct sigaction sa;
tests/lib/libc/gen/t_raise.c
136
(void)memset(&sa, 0, sizeof(struct sigaction));
tests/lib/libc/gen/t_raise.c
147
ATF_REQUIRE(sigaction(sig[i], &sa, 0) == 0);
tests/lib/libc/gen/t_raise.c
166
struct sigaction sa;
tests/lib/libc/gen/t_raise.c
173
ATF_REQUIRE(sigaction(SIGUSR1, &sa, 0) == 0);
tests/lib/libc/gen/t_siginfo.c
121
struct sigaction sa;
tests/lib/libc/gen/t_siginfo.c
125
sigaction(SIGALRM, &sa, NULL);
tests/lib/libc/gen/t_siginfo.c
163
struct sigaction sa;
tests/lib/libc/gen/t_siginfo.c
167
sigaction(SIGCHLD, &sa, NULL);
tests/lib/libc/gen/t_siginfo.c
308
struct sigaction sa;
tests/lib/libc/gen/t_siginfo.c
328
sigaction(SIGFPE, &sa, NULL);
tests/lib/libc/gen/t_siginfo.c
369
struct sigaction sa;
tests/lib/libc/gen/t_siginfo.c
379
sigaction(SIGFPE, &sa, NULL);
tests/lib/libc/gen/t_siginfo.c
422
struct sigaction sa;
tests/lib/libc/gen/t_siginfo.c
427
sigaction(SIGSEGV, &sa, NULL);
tests/lib/libc/gen/t_siginfo.c
466
struct sigaction sa;
tests/lib/libc/gen/t_siginfo.c
504
sigaction(SIGBUS, &sa, NULL);
tests/lib/libc/setjmp/t_setjmp.c
156
struct sigaction sa;
tests/lib/libc/setjmp/t_setjmp.c
199
RL(sigaction(SIGABRT, &sa, NULL));
tests/lib/libc/setjmp/t_sigstack.c
171
struct sigaction sa;
tests/lib/libc/setjmp/t_sigstack.c
208
RL(sigaction(SIGUSR1, &sa, NULL));
tests/lib/libc/setjmp/t_threadjmp.c
104
struct sigaction sa;
tests/lib/libc/setjmp/t_threadjmp.c
123
REQUIRE_ERRNO(sigaction(SIGABRT, &sa, NULL) != -1);
tests/lib/libc/stdio/h_intr.c
346
struct sigaction sa, osa;
tests/lib/libc/stdio/h_intr.c
351
if (sigaction(signo, &sa, &osa) < 0)
tests/lib/libc/sys/t_getrandom.c
58
struct sigaction sa;
tests/lib/libc/sys/t_getrandom.c
65
ATF_CHECK_MSG(sigaction(SIGALRM, &sa, NULL) != -1,
tests/lib/libc/sys/t_ptrace_clone_wait.h
332
struct sigaction sa;
tests/lib/libc/sys/t_ptrace_clone_wait.h
370
FORKEE_ASSERT(sigaction(SIGTRAP, &sa, NULL) != -1);
tests/lib/libc/sys/t_ptrace_exec_wait.h
184
struct sigaction sa;
tests/lib/libc/sys/t_ptrace_exec_wait.h
213
FORKEE_ASSERT(sigaction(sigval, &sa, NULL) != -1);
tests/lib/libc/sys/t_ptrace_exec_wait.h
37
struct sigaction sa;
tests/lib/libc/sys/t_ptrace_exec_wait.h
66
FORKEE_ASSERT(sigaction(sigval, &sa, NULL) != -1);
tests/lib/libc/sys/t_ptrace_fork_wait.h
1291
struct sigaction sa;
tests/lib/libc/sys/t_ptrace_fork_wait.h
1321
FORKEE_ASSERT(sigaction(SIGTRAP, &sa, NULL) != -1);
tests/lib/libc/sys/t_ptrace_sigchld.c
118
struct sigaction sa;
tests/lib/libc/sys/t_ptrace_sigchld.c
133
SYSCALL_REQUIRE(sigaction(SIGCHLD, &sa, NULL) == 0);
tests/lib/libc/sys/t_ptrace_siginfo_wait.h
38
struct sigaction sa;
tests/lib/libc/sys/t_ptrace_siginfo_wait.h
55
FORKEE_ASSERT(sigaction(faked ? sigfaked : sigval, &sa, NULL)
tests/lib/libc/sys/t_ptrace_signal_wait.h
1141
struct sigaction sa;
tests/lib/libc/sys/t_ptrace_signal_wait.h
1159
FORKEE_ASSERT(sigaction(sigsent, &sa, NULL) != -1);
tests/lib/libc/sys/t_ptrace_signal_wait.h
1696
struct sigaction sa;
tests/lib/libc/sys/t_ptrace_signal_wait.h
1716
FORKEE_ASSERT(sigaction(sig, &sa, NULL) != -1);
tests/lib/libc/sys/t_ptrace_signal_wait.h
1794
struct sigaction sa;
tests/lib/libc/sys/t_ptrace_signal_wait.h
180
struct sigaction sa;
tests/lib/libc/sys/t_ptrace_signal_wait.h
1832
FORKEE_ASSERT(sigaction(sig, &sa, NULL) != -1);
tests/lib/libc/sys/t_ptrace_signal_wait.h
197
FORKEE_ASSERT(sigaction(sigignored, &sa, NULL) != -1);
tests/lib/libc/sys/t_ptrace_signal_wait.h
730
struct sigaction sa;
tests/lib/libc/sys/t_ptrace_signal_wait.h
768
FORKEE_ASSERT(sigaction(sig, &sa, NULL) != -1);
tests/lib/libc/sys/t_ptrace_signal_wait.h
950
struct sigaction sa;
tests/lib/libc/sys/t_ptrace_signal_wait.h
968
FORKEE_ASSERT(sigaction(sigsent, &sa, NULL) != -1);
tests/lib/libc/sys/t_ptrace_step_wait.h
40
struct sigaction sa;
tests/lib/libc/sys/t_ptrace_step_wait.h
72
FORKEE_ASSERT(sigaction(SIGTRAP, &sa, NULL) != -1);
tests/lib/libc/sys/t_ptrace_threads_wait.h
792
struct sigaction sa;
tests/lib/libc/sys/t_ptrace_threads_wait.h
805
FORKEE_ASSERT(sigaction(
tests/lib/libc/sys/t_recvmmsg.c
115
error = sigaction(SIGCHLD, &sa, 0);
tests/lib/libc/sys/t_recvmmsg.c
86
struct sigaction sa;
tests/lib/libc/sys/t_select.c
100
if (sigaction(SIGTERM, &sa, NULL) == -1)
tests/lib/libc/sys/t_select.c
90
struct sigaction sa;
tests/lib/libc/sys/t_sendmmsg.c
125
error = sigaction(SIGCHLD, &sa, 0);
tests/lib/libc/sys/t_sendmmsg.c
91
struct sigaction sa;
tests/lib/libc/sys/t_sendrecv.c
116
struct sigaction sa;
tests/lib/libc/sys/t_sendrecv.c
134
error = sigaction(SIGCHLD, &sa, 0);
tests/lib/libc/sys/t_sigaction.c
101
sigaction(SIGUSR1, &sa, 0);
tests/lib/libc/sys/t_sigaction.c
57
struct sigaction sa;
tests/lib/libc/sys/t_sigaction.c
63
sigaction(SIGUSR1, &sa, NULL);
tests/lib/libc/sys/t_sigaction.c
97
static struct sigaction sa;
tests/lib/libc/sys/t_sigaltstack.c
67
struct sigaction sa;
tests/lib/libc/sys/t_sigaltstack.c
81
sigaction(SIGUSR1, &sa, NULL);
tests/lib/libc/sys/t_sigqueue.c
162
struct sigaction act;
tests/lib/libc/sys/t_sigqueue.c
164
struct sigaction oact[CNT];
tests/lib/libc/sys/t_sigqueue.c
173
ATF_REQUIRE(sigaction(ordered[i], &act, &oact[i]) != -1);
tests/lib/libc/sys/t_sigqueue.c
203
ATF_REQUIRE(sigaction(signals[i], &oact[i], NULL) != -1);
tests/lib/libc/sys/t_sigqueue.c
64
struct sigaction sa;
tests/lib/libc/sys/t_sigqueue.c
71
if (sigaction(SIGUSR1, &sa, NULL) != 0)
tests/lib/libc/sys/t_sigtimedwait.c
150
struct sigaction sa = {.sa_handler = &on_alarm}; /* no SA_RESTART */
tests/lib/libc/sys/t_sigtimedwait.c
155
RL(sigaction(SIGALRM, &sa, NULL));
tests/lib/libc/sys/t_sigtimedwait.c
180
struct sigaction sa = {.sa_handler = &on_alarm}; /* no SA_RESTART */
tests/lib/libc/sys/t_sigtimedwait.c
185
RL(sigaction(SIGALRM, &sa, NULL));
tests/lib/libc/sys/t_sigtimedwait.c
217
struct sigaction sa = {.sa_handler = &on_alarm}; /* no SA_RESTART */
tests/lib/libc/sys/t_sigtimedwait.c
221
RL(sigaction(SIGALRM, &sa, NULL));
tests/lib/libc/sys/t_timer_create.c
70
struct sigaction act;
tests/lib/libc/sys/t_timer_create.c
78
(void)memset(&act, 0, sizeof(struct sigaction));
tests/lib/libc/sys/t_timer_create.c
93
ATF_REQUIRE(sigaction(SIGALRM, &act, NULL) == 0);
tests/lib/libc/ttyio/t_ttyio.c
138
REQUIRE_ERRNO(sigaction(SIGCHLD, &sa, NULL), -1);
tests/lib/libc/ttyio/t_ttyio.c
152
REQUIRE_ERRNO(sigaction(SIGCHLD, &sa, NULL), -1);
tests/lib/libc/ttyio/t_ttyio.c
83
struct sigaction sa;
tests/lib/libexecinfo/t_sig_backtrace.c
199
struct sigaction sa = {
tests/lib/libexecinfo/t_sig_backtrace.c
203
ATF_REQUIRE(sigaction(SIGSEGV, &sa, NULL) == 0);
tests/lib/libexecinfo/t_sig_backtrace.c
232
struct sigaction sa = {
tests/lib/libexecinfo/t_sig_backtrace.c
236
ATF_REQUIRE(sigaction(SIGSEGV, &sa, NULL) == 0);
tests/lib/libi386/t_user_ldt.c
205
struct sigaction act;
tests/lib/libi386/t_user_ldt.c
220
ATF_REQUIRE_EQ(sigaction(SIGSEGV, &act, NULL), 0);
tests/lib/libi386/t_user_ldt.c
249
struct sigaction act;
tests/lib/libi386/t_user_ldt.c
264
ATF_REQUIRE_EQ(sigaction(SIGBUS, &act, NULL), 0);
tests/lib/libi386/t_user_ldt.c
309
struct sigaction act;
tests/lib/libi386/t_user_ldt.c
318
ATF_REQUIRE_EQ(sigaction(SIGSEGV, &act, NULL), 0);
tests/lib/libpthread/t_once.c
171
struct sigaction act;
tests/lib/libpthread/t_once.c
178
sigaction(SIGALRM, &act, NULL);
tests/lib/libpthread/t_sigalarm.c
64
struct sigaction sa;
tests/lib/libpthread/t_sigalarm.c
76
sigaction(SIGALRM, &sa, NULL);
tests/lib/libpthread/t_siglongjmp.c
78
struct sigaction act;
tests/lib/libpthread/t_siglongjmp.c
93
sigaction(SIGSEGV, &act, NULL);
tests/lib/libpthread/t_sigmask.c
109
struct sigaction act;
tests/lib/libpthread/t_sigmask.c
116
ATF_REQUIRE_EQ(sigaction(SIGUSR1, &act, NULL), 0);
tests/lib/libpthread/t_sigmask.c
121
(void)sigaction(SIGUSR2, &act, NULL);
tests/lib/libpthread/t_sigmask.c
179
struct sigaction act;
tests/lib/libpthread/t_sigmask.c
187
ATF_REQUIRE_EQ(sigaction(SIGUSR1, &act, NULL), 0);
tests/lib/libpthread/t_sigmask.c
192
(void)sigaction(SIGUSR2, &act, NULL);
tests/lib/libpthread/t_sigmask.c
224
struct sigaction act;
tests/lib/libpthread/t_sigmask.c
231
ATF_REQUIRE_EQ_MSG(sigaction(SIGALRM, &act, NULL), 0, "%s",
tests/lib/libpthread/t_sigsuspend.c
64
struct sigaction sa;
tests/lib/libpthread/t_sigsuspend.c
71
sigaction(SIGALRM, &sa, NULL);
tests/lib/libpthread/t_sleep.c
74
struct sigaction act;
tests/lib/libpthread/t_sleep.c
82
sigaction(SIGALRM, &act, NULL);
tests/lib/libpthread/t_stack.c
212
struct sigaction act, oact;
tests/lib/libpthread/t_stack.c
213
volatile struct sigaction oactsave;
tests/lib/libpthread/t_stack.c
221
RL(sigaction(SIGSEGV, &act, &oact));
tests/lib/libpthread/t_stack.c
229
RL(sigaction(SIGSEGV, &oact, NULL));
tests/lib/libpthread/t_stack.c
245
struct sigaction act, oact;
tests/lib/libpthread/t_stack.c
246
volatile struct sigaction oactsave;
tests/lib/libpthread/t_stack.c
254
RL(sigaction(SIGSEGV, &act, &oact));
tests/lib/libpthread/t_stack.c
262
RL(sigaction(SIGSEGV, &oact, NULL));
tests/lib/libpthread/t_thrd.c
178
struct sigaction sa;
tests/lib/libpthread/t_thrd.c
201
sigaction(SIGALRM, &sa, NULL);
tests/net/net/t_tcp.c
245
sigaction(SIGALRM, &sa, NULL);
tests/net/net/t_tcp.c
83
struct sigaction sa;
usr.bin/at/at.c
180
struct sigaction act;
usr.bin/at/at.c
197
(void)sigaction(SIGINT, &act, NULL);
usr.bin/at/at.c
227
(void)sigaction(SIGALRM, &act, NULL);
usr.bin/cdplay/cdplay.c
207
struct sigaction sa_timer;
usr.bin/cdplay/cdplay.c
259
if (sigaction(SIGALRM, &sa_timer, NULL) < 0)
usr.bin/csplit/csplit.c
103
struct sigaction sa;
usr.bin/csplit/csplit.c
161
(void)sigaction(SIGHUP, &sa, NULL);
usr.bin/csplit/csplit.c
162
(void)sigaction(SIGINT, &sa, NULL);
usr.bin/csplit/csplit.c
163
(void)sigaction(SIGTERM, &sa, NULL);
usr.bin/find/find.c
162
struct sigaction sa;
usr.bin/find/find.c
173
(void)sigaction(SIGINFO, &sa, NULL);
usr.bin/flock/flock.c
262
struct sigaction sa;
usr.bin/flock/flock.c
283
if (sigaction(SIGALRM, &sa, NULL) == -1)
usr.bin/ftp/progressbar.c
413
struct sigaction act, oact;
usr.bin/ftp/progressbar.c
421
if (sigaction(sig, &act, &oact) < 0)
usr.bin/mail/cmd1.c
372
struct sigaction osa;
usr.bin/mail/cmd1.c
478
struct sigaction osa;
usr.bin/mail/cmd3.c
142
struct sigaction osa;
usr.bin/mail/cmd3.c
170
struct sigaction osa;
usr.bin/mail/collect.c
130
struct sigaction osa;
usr.bin/mail/collect.c
156
struct sigaction osa;
usr.bin/mail/edit.c
168
struct sigaction osa;
usr.bin/mail/fio.c
326
struct sigaction osa_sigtstp;
usr.bin/mail/fio.c
327
struct sigaction osa_sigttin;
usr.bin/mail/fio.c
328
struct sigaction osa_sigttou;
usr.bin/mail/fio.c
347
(void)sigaction(SIGTSTP, &osa_sigtstp, NULL);
usr.bin/mail/fio.c
348
(void)sigaction(SIGTTIN, &osa_sigttin, NULL);
usr.bin/mail/fio.c
349
(void)sigaction(SIGTTOU, &osa_sigttou, NULL);
usr.bin/mail/lex.c
542
struct sigaction osa;
usr.bin/mail/main.c
180
struct sigaction sa;
usr.bin/mail/main.c
208
(void)sigaction(SIGCHLD, &sa, NULL);
usr.bin/mail/sig.c
195
struct sigaction nsa;
usr.bin/mail/sig.c
196
struct sigaction osa;
usr.bin/mail/sig.c
205
(void)sigaction(signo, &nsa, &osa);
usr.bin/mail/sig.c
214
(void)sigaction(signo, &osa, NULL);
usr.bin/mail/sig.c
266
struct sigaction sa;
usr.bin/mail/sig.c
267
struct sigaction osa;
usr.bin/mail/sig.c
289
(void)sigaction(SIGTSTP, &sa, NULL);
usr.bin/mail/sig.c
290
(void)sigaction(SIGTTIN, &sa, NULL);
usr.bin/mail/sig.c
291
(void)sigaction(SIGTTOU, &sa, NULL);
usr.bin/mail/sig.c
305
if (sigaction(SIGHUP, &sa, &osa) != -1 && osa.sa_handler == SIG_IGN)
usr.bin/mail/sig.c
308
if (sigaction(SIGINT, &sa, &osa) != -1 && osa.sa_handler == SIG_IGN)
usr.bin/mail/sig.c
326
(void)sigaction(SIGPIPE, &sa, NULL);
usr.bin/mail/sig.c
376
sig_ignore(int sig, struct sigaction *osa, sigset_t *oset)
usr.bin/mail/sig.c
378
struct sigaction act;
usr.bin/mail/sig.c
385
error = sigaction(sig, &act, osa);
usr.bin/mail/sig.c
401
sig_restore(int sig, struct sigaction *osa, sigset_t *oset)
usr.bin/mail/sig.c
409
error = sigaction(sig, osa, NULL);
usr.bin/mail/sig.c
420
sig_setflags(int signo, int flags, struct sigaction *osa)
usr.bin/mail/sig.c
422
struct sigaction sa;
usr.bin/mail/sig.c
424
if (sigaction(signo, NULL, &sa) == -1)
usr.bin/mail/sig.c
429
return sigaction(signo, &sa, NULL);
usr.bin/mail/sig.h
32
int sig_ignore(int, struct sigaction *, sigset_t *);
usr.bin/mail/sig.h
33
int sig_restore(int, struct sigaction *, sigset_t *);
usr.bin/mail/sig.h
34
int sig_setflags(int, int, struct sigaction *);
usr.bin/make/job.c
740
struct sigaction act;
usr.bin/make/job.c
761
(void)sigaction(signo, &act, NULL);
usr.bin/make/job.c
787
(void)sigaction(signo, &act, NULL);
usr.bin/make/util.c
336
struct sigaction sa, osa;
usr.bin/make/util.c
342
if (sigaction(s, &sa, &osa) == -1)
usr.bin/rlogin/rlogin.c
142
struct sigaction sa;
usr.bin/rlogin/rlogin.c
248
(void)sigaction(SIGPIPE, &sa, NULL);
usr.bin/rlogin/rlogin.c
261
(void)sigaction(SIGURG, &sa, NULL);
usr.bin/rlogin/rlogin.c
263
(void)sigaction(SIGUSR1, &sa, NULL);
usr.bin/rlogin/rlogin.c
304
struct sigaction sa;
usr.bin/rlogin/rlogin.c
309
(void)sigaction(SIGINT, &sa, NULL);
usr.bin/rlogin/rlogin.c
338
(void)sigaction(SIGCHLD, &sa, NULL);
usr.bin/rlogin/rlogin.c
348
struct sigaction isa, osa;
usr.bin/rlogin/rlogin.c
358
(void)sigaction(sig, &isa, &osa);
usr.bin/rlogin/rlogin.c
360
(void)sigaction(sig, &osa, NULL);
usr.bin/rlogin/rlogin.c
370
struct sigaction sa;
usr.bin/rlogin/rlogin.c
378
(void)sigaction(SIGCHLD, &sa, NULL);
usr.bin/rlogin/rlogin.c
395
struct sigaction sa;
usr.bin/rlogin/rlogin.c
402
(void)sigaction(SIGWINCH, &sa, NULL);
usr.bin/rlogin/rlogin.c
521
struct sigaction sa;
usr.bin/rlogin/rlogin.c
527
(void)sigaction(SIGCHLD, &sa, NULL);
usr.bin/rlogin/rlogin.c
530
(void)sigaction(SIGCHLD, &sa, NULL);
usr.bin/rlogin/rlogin.c
668
struct sigaction sa;
usr.bin/rlogin/rlogin.c
674
(void)sigaction(SIGTTOU, &sa, NULL);
usr.bin/rlogin/rlogin.c
676
(void)sigaction(SIGURG, &sa, NULL);
usr.bin/rlogin/rlogin.c
743
struct sigaction sa;
usr.bin/rlogin/rlogin.c
747
(void)sigaction(SIGPIPE, &sa, NULL);
usr.bin/rsh/rsh.c
276
struct sigaction sa;
usr.bin/rsh/rsh.c
280
(void)sigaction(sigs[i], &sa, NULL);
usr.bin/script/script.c
225
struct sigaction sa, osa;
usr.bin/script/script.c
230
if (sigaction(signo, &sa, &osa) == -1)
usr.bin/sort/sort.c
325
struct sigaction act;
usr.bin/sort/sort.c
341
sigaction(sigtable[i], &act, 0);
usr.bin/su/su_pam.c
360
struct sigaction sa, sa_int, sa_pipe, sa_quit;
usr.bin/su/su_pam.c
373
(void)sigaction(SIGINT, &sa, &sa_int);
usr.bin/su/su_pam.c
374
(void)sigaction(SIGQUIT, &sa, &sa_quit);
usr.bin/su/su_pam.c
375
(void)sigaction(SIGPIPE, &sa, &sa_pipe);
usr.bin/su/su_pam.c
377
(void)sigaction(SIGTSTP, &sa, NULL);
usr.bin/su/su_pam.c
396
(void)sigaction(SIGINT, &sa_int, NULL);
usr.bin/su/su_pam.c
397
(void)sigaction(SIGQUIT, &sa_quit, NULL);
usr.bin/su/su_pam.c
398
(void)sigaction(SIGPIPE, &sa_pipe, NULL);
usr.bin/su/su_pam.c
403
(void)sigaction(SIGTTOU, &sa, NULL);
usr.bin/su/su_pam.c
408
(void)sigaction(SIGPIPE, &sa_pipe, NULL);
usr.bin/talk/init_disp.c
61
struct sigaction sa;
usr.bin/talk/init_disp.c
65
(void)sigaction(SIGTSTP, NULL, &sa);
usr.bin/talk/init_disp.c
67
(void)sigaction(SIGTSTP, &sa, NULL);
usr.bin/timeout/timeout.c
196
struct sigaction signals;
usr.bin/timeout/timeout.c
279
sigaction(signums[i], &signals, NULL) == -1)
usr.bin/tip/aculib/courier.c
345
struct sigaction sa, osa;
usr.bin/tip/aculib/courier.c
361
(void)sigaction(SIGALRM, &sa, &osa);
usr.bin/tip/aculib/courier.c
371
(void)sigaction(SIGALRM, &osa, NULL);
usr.bin/tip/aculib/t3000.c
355
struct sigaction sa, osa;
usr.bin/tip/aculib/t3000.c
371
(void)sigaction(SIGALRM, &sa, &osa);
usr.bin/tip/aculib/t3000.c
381
(void)sigaction(SIGALRM, &osa, NULL);
usr.bin/vndcompress/vndcompress.c
280
static const struct sigaction zero_sa;
usr.bin/vndcompress/vndcompress.c
281
struct sigaction sa = zero_sa;
usr.bin/vndcompress/vndcompress.c
290
if (sigaction(signals[i].sd_signo, &sa, NULL) == -1)
usr.sbin/autofs/automountd.c
382
struct sigaction sa;
usr.sbin/autofs/automountd.c
388
error = sigaction(SIGCHLD, &sa, NULL);
usr.sbin/btattach/btattach.c
371
struct sigaction oaction, taction;
usr.sbin/btattach/btattach.c
397
sigaction(SIGALRM, &taction, &oaction);
usr.sbin/btattach/btattach.c
401
sigaction(SIGALRM, &oaction, NULL);
usr.sbin/faithd/faithd.c
689
struct sigaction sa;
usr.sbin/faithd/faithd.c
700
(void)sigaction(SIGCHLD, &sa, (struct sigaction *)0);
usr.sbin/lpr/common_source/displayq.c
247
struct sigaction osa, nsa;
usr.sbin/lpr/common_source/displayq.c
256
(void)sigaction(SIGALRM, &nsa, &osa);
usr.sbin/lpr/common_source/displayq.c
263
(void)sigaction(SIGALRM, &osa, NULL);
usr.sbin/lpr/common_source/rmjob.c
348
struct sigaction osa, nsa;
usr.sbin/lpr/common_source/rmjob.c
358
(void)sigaction(SIGALRM, &nsa, &osa);
usr.sbin/lpr/common_source/rmjob.c
365
(void)sigaction(SIGALRM, &osa, NULL);
usr.sbin/lpr/lpd/printjob.c
1005
(void)sigaction(SIGALRM, &osa, NULL);
usr.sbin/lpr/lpd/printjob.c
948
struct sigaction osa, nsa;
usr.sbin/lpr/lpd/printjob.c
959
(void)sigaction(SIGALRM, &nsa, &osa);
usr.sbin/lpr/lpd/printjob.c
963
(void)sigaction(SIGALRM, &osa, NULL);
usr.sbin/lpr/lpd/printjob.c
968
(void)sigaction(SIGALRM, &osa, NULL);
usr.sbin/lpr/lpd/printjob.c
991
struct sigaction osa, nsa;
usr.sbin/lpr/lpd/printjob.c
998
(void)sigaction(SIGALRM, &nsa, &osa);
usr.sbin/rpc.lockd/lockd.c
205
if (sigaction(SIGCHLD, &sigchild, NULL) != 0) {
usr.sbin/rpc.lockd/lockd.c
213
if (sigaction(SIGALRM, &sigalarm, NULL) != 0) {
usr.sbin/rpc.lockd/lockd.c
90
struct sigaction sigchild, sigalarm;
usr.sbin/rpc.pcnfsd/pcnfsd_misc.c
343
static struct sigaction old_action;
usr.sbin/rpc.pcnfsd/pcnfsd_misc.c
344
static struct sigaction new_action;
usr.sbin/rpc.pcnfsd/pcnfsd_misc.c
372
sigaction(SIGALRM, &new_action, &old_action);
usr.sbin/rpc.pcnfsd/pcnfsd_misc.c
402
sigaction(SIGALRM, &old_action, NULL);
usr.sbin/rpc.statd/statd.c
136
(void)sigaction(SIGCHLD, &nsa, NULL);
usr.sbin/rpc.statd/statd.c
148
(void)sigaction(SIGTERM, &sa, NULL);
usr.sbin/rpc.statd/statd.c
149
(void)sigaction(SIGQUIT, &sa, NULL);
usr.sbin/rpc.statd/statd.c
150
(void)sigaction(SIGHUP, &sa, NULL);
usr.sbin/rpc.statd/statd.c
151
(void)sigaction(SIGINT, &sa, NULL);
usr.sbin/rpc.statd/statd.c
185
(void)sigaction(SIGALRM, &sa, NULL);
usr.sbin/rpc.statd/statd.c
66
struct sigaction sa;
usr.sbin/rpc.statd/statd.c
95
struct sigaction nsa;
usr.sbin/rpc.statd/statd.h
118
#define NO_ALARM sa.sa_handler == SIG_DFL ? 0 : (sa.sa_handler = SIG_IGN, sigaction(SIGALRM, &sa, NULL))
usr.sbin/rpc.statd/statd.h
119
#define ALARM sa.sa_handler == SIG_DFL ? 0 : (sa.sa_handler = notify_handler, sigaction(SIGALRM, &sa, NULL))
usr.sbin/rpc.statd/statd.h
120
#define CLR_ALARM sa.sa_handler == SIG_DFL ? 0 : (sa.sa_handler = SIG_DFL, sigaction(SIGALRM, &sa, NULL))
usr.sbin/rpc.statd/statd.h
94
extern struct sigaction sa;
usr.sbin/screenblank/screenblank.c
231
if (sigaction(SIGINT, &sa, NULL) || sigaction(SIGTERM, &sa, NULL) ||
usr.sbin/screenblank/screenblank.c
232
sigaction(SIGHUP, &sa, NULL))
usr.sbin/screenblank/screenblank.c
96
struct sigaction sa;
usr.sbin/sdpd/main.c
116
if (sigaction(SIGTERM, &sa, NULL) < 0
usr.sbin/sdpd/main.c
117
|| sigaction(SIGHUP, &sa, NULL) < 0
usr.sbin/sdpd/main.c
118
|| sigaction(SIGINT, &sa, NULL) < 0) {
usr.sbin/sdpd/main.c
126
if (sigaction(SIGPIPE, &sa, NULL) < 0) {
usr.sbin/sdpd/main.c
71
struct sigaction sa;
usr.sbin/ypbind/ypbind.c
1603
struct sigaction sa;
usr.sbin/ypbind/ypbind.c
1608
if (sigaction(SIGHUP, &sa, NULL) == -1) {
usr.sbin/ypserv/ypserv/ypserv.c
300
struct sigaction sa;
usr.sbin/ypserv/ypserv/ypserv.c
358
if (sigaction(SIGCHLD, &sa, NULL)) {