Symbol: _SIG_MAXSIG
lib/libc/gen/posix_spawn.c
142
for (i = 1; i <= _SIG_MAXSIG; i++) {
lib/libc/gen/sigsetops.c
114
if (signo <= 0 || signo > _SIG_MAXSIG) {
lib/libc/gen/sigsetops.c
39
if (signo <= 0 || signo > _SIG_MAXSIG) {
lib/libc/gen/sigsetops.c
51
if (signo <= 0 || signo > _SIG_MAXSIG) {
lib/libc/gen/sysconf.c
292
return (_SIG_MAXSIG);
lib/libc/tests/gen/sigsetops_test.c
101
ATF_REQUIRE(sigdelset(&set, _SIG_MAXSIG + 1) == -1 && errno == EINVAL);
lib/libc/tests/gen/sigsetops_test.c
99
ATF_REQUIRE(sigaddset(&set, _SIG_MAXSIG + 1) == -1 && errno == EINVAL);
lib/libthr/thread/thr_kill.c
50
if (sig < 0 || sig > _SIG_MAXSIG)
lib/libthr/thread/thr_sig.c
482
for (sig = 1; sig <= _SIG_MAXSIG; sig++) {
lib/libthr/thread/thr_sig.c
527
for (sig = 1; sig <= _SIG_MAXSIG; sig++) {
lib/libthr/thread/thr_sig.c
559
for (i = 1; i <= _SIG_MAXSIG; ++i)
lib/libthr/thread/thr_sig.c
568
for (i = 1; i <= _SIG_MAXSIG; ++i)
lib/libthr/thread/thr_sig.c
577
for (i = 1; i <= _SIG_MAXSIG; ++i) {
lib/libthr/thread/thr_sig.c
59
static struct usigaction _thr_sigact[_SIG_MAXSIG];
lib/libthr/thread/thr_sigqueue.c
54
if (sig < 0 || sig > _SIG_MAXSIG)
sys/kern/kern_fork.c
950
if ((flags & RFTSIGZMB) != 0 && (u_int)RFTSIGNUM(flags) > _SIG_MAXSIG)
sys/kern/kern_procctl.c
570
if (rk->rk_sig <= 0 || rk->rk_sig > _SIG_MAXSIG ||
sys/kern/kern_sig.c
1924
if ((u_int)signum > _SIG_MAXSIG)
sys/kern/kern_sig.c
1964
if ((u_int)uap->signum > _SIG_MAXSIG)
sys/kern/kern_sig.c
1998
if ((u_int)uap->signum > _SIG_MAXSIG)
sys/kern/kern_sig.c
2037
if (signum > _SIG_MAXSIG)
sys/kern/sys_process.c
1460
if (data < 0 || data > _SIG_MAXSIG) {
sys/sys/_sigset.h
48
#define _SIG_VALID(sig) ((sig) <= _SIG_MAXSIG && (sig) > 0)
sys/sys/signalvar.h
52
sig_t ps_sigact[_SIG_MAXSIG]; /* Disposition of signals. */
sys/sys/signalvar.h
53
sigset_t ps_catchmask[_SIG_MAXSIG]; /* Signals to be blocked. */
usr.bin/procstat/procstat_sigs.c
123
for (j = 1; j <= _SIG_MAXSIG; j++) {
usr.bin/procstat/procstat_sigs.c
167
for (j = 1; j <= _SIG_MAXSIG; j++) {