Searched refs:NSIG (Results 1 - 25 of 54) sorted by relevance

123

/freebsd-9.3-release/lib/libc/gen/
H A Dsiglist.c38 const char *const sys_signame[NSIG] = {
73 const char *const sys_siglist[NSIG] = {
H A Dpsignal.c53 if (sig < NSIG)
H A Dreadpassphrase.c40 static volatile sig_atomic_t signo[NSIG];
61 for (i = 0; i < NSIG; i++)
161 for (i = 0; i < NSIG; i++) {
/freebsd-9.3-release/release/picobsd/tinyware/msh/
H A Dsh6.c5 #define _NSIG NSIG
H A Dsh5.c4 #define _NSIG NSIG
H A Dsh4.c7 #define _NSIG NSIG
/freebsd-9.3-release/usr.sbin/ppp/
H A Dsig.c36 static int caused[NSIG]; /* An array of pending signals */
38 static sig_type handler[NSIG]; /* all start at SIG_DFL */
68 if (sig <= 0 || sig > NSIG) {
108 for (sig = 0; sig < NSIG; sig++)
/freebsd-9.3-release/contrib/tcsh/
H A Dtc.sig.h86 #if !defined(NSIG) && defined(SIGMAX)
87 # define NSIG (SIGMAX+1) macro
88 #endif /* !NSIG && SIGMAX */
89 #if !defined(NSIG) && defined(_SIG_MAX)
90 # define NSIG (_SIG_MAX+1) macro
91 #endif /* !NSIG && _SIG_MAX */
92 #if !defined(NSIG) && defined(_NSIG)
93 # define NSIG _NSIG macro
94 #endif /* !NSIG && _NSIG */
95 #if !defined(NSIG)
96 #define NSIG macro
[all...]
/freebsd-9.3-release/crypto/heimdal/appl/login/
H A Dread_string.c46 #ifndef NSIG
47 #define NSIG 47 macro
53 struct sigaction sigs[NSIG];
54 int oksigs[NSIG];
/freebsd-9.3-release/bin/sh/
H A Dtrap.c75 MKINIT char sigmode[NSIG]; /* current value of signal */
78 static char *volatile trap[NSIG]; /* trap handler commands */
79 static volatile sig_atomic_t gotsig[NSIG];
94 * Note: the signal number may exceed NSIG.
104 return ((signo >= 0 && signo < NSIG) ? signo : (-1));
171 if (signo < NSIG && trap[signo] != NULL) {
222 for (tp = trap ; tp <= &trap[NSIG - 1] ; tp++) {
243 for (tp = trap ; tp <= &trap[NSIG - 1] ; tp++) {
419 for (i = 1; i < NSIG; i++) {
466 if (i >= NSIG)
[all...]
/freebsd-9.3-release/lib/libkse/test/
H A Dsigsuspend_d.c47 static int sigcounts[NSIG + 1];
48 static int sigfifo[NSIG + 1];
102 if ((signo >= 0) && (signo <= NSIG))
167 memset ((void *) sigcounts, 0, NSIG * sizeof (int));
H A Dsigwait_d.c47 static int sigcounts[NSIG + 1];
88 if ((signo >= 0) && (signo <= NSIG))
122 memset ((void *) sigcounts, 0, NSIG * sizeof (int));
/freebsd-9.3-release/include/
H A Dsignal.h45 extern __const char *__const sys_signame[NSIG];
46 extern __const char *__const sys_siglist[NSIG];
/freebsd-9.3-release/contrib/ntp/sntp/libevent/
H A Dsignal.c136 int ncaught[NSIG];
160 if (sig < NSIG)
166 for (i = 0; i < NSIG; ++i) {
283 EVUTIL_ASSERT(evsignal >= 0 && evsignal < NSIG);
363 EVUTIL_ASSERT(evsignal >= 0 && evsignal < NSIG);
424 for (i = 0; i < NSIG; ++i) {
H A Dkqueue.c447 EVUTIL_ASSERT(nsignal >= 0 && nsignal < NSIG);
481 EVUTIL_ASSERT(nsignal >= 0 && nsignal < NSIG);
/freebsd-9.3-release/usr.bin/killall/
H A Dkillall.c71 for (cnt = NSIG, p = sys_signame + 1; --cnt; ++p) {
211 for (sig = NSIG, p = sys_signame + 1;
223 if (sig < 0 || sig >= NSIG)
/freebsd-9.3-release/contrib/pf/libevent/
H A Dsignal.c57 static sig_atomic_t evsigcaught[NSIG];
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dstrsignal.c246 #ifdef NSIG
247 static int sys_nsig = NSIG;
355 check the size of the table (@code{NSIG}) before indexing it, since
357 the table. Thus @code{NSIG} might be smaller than value implied by
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dstrsignal.c246 #ifdef NSIG
247 static int sys_nsig = NSIG;
355 check the size of the table (@code{NSIG}) before indexing it, since
357 the table. Thus @code{NSIG} might be smaller than value implied by
/freebsd-9.3-release/contrib/libreadline/examples/rlfe/
H A Dos.h438 #ifndef NSIG /* kbeal needs these w/o SYSV */
439 # define NSIG 32 macro
440 #endif /* !NSIG */
/freebsd-9.3-release/contrib/groff/src/roff/groff/
H A Dpipeline.c571 #ifdef NSIG
573 if (n >= 0 && n < NSIG && sys_siglist[n] != 0)
576 #endif /* NSIG */
/freebsd-9.3-release/crypto/openssh/
H A Ddefines.h813 # ifdef NSIG
814 # define _NSIG NSIG
/freebsd-9.3-release/usr.bin/kdump/
H A Dmksubr216 if (sig > 0 && sig < NSIG)
/freebsd-9.3-release/contrib/pf/pflogd/
H A Dprivsep.c77 for (i = 1; i < NSIG; i++)
/freebsd-9.3-release/contrib/top/
H A Dcommands.c403 if (signum <= 0 || signum >= NSIG)

Completed in 289 milliseconds

123