Searched refs:sigs (Results 1 - 25 of 41) sorted by relevance

12

/freebsd-9.3-release/crypto/heimdal/appl/login/
H A Dread_string.c53 struct sigaction sigs[NSIG]; local
71 for(i = 1; i < sizeof(sigs) / sizeof(sigs[0]); i++)
73 if (sigaction(i, &sa, &sigs[i]) == 0)
115 for(i = 1; i < sizeof(sigs) / sizeof(sigs[0]); i++)
117 sigaction(i, &sigs[i], NULL);
/freebsd-9.3-release/contrib/xz/src/xz/
H A Dsignals.c52 static const int sigs[] = { local
71 for (size_t i = 0; i < ARRAY_SIZE(sigs); ++i)
72 sigaddset(&hooked_signals, sigs[i]);
92 for (size_t i = 0; i < ARRAY_SIZE(sigs); ++i) {
96 if (sigaction(sigs[i], NULL, &old) == 0
101 if (sigaction(sigs[i], &sa, NULL))
/freebsd-9.3-release/contrib/less/
H A Dsignal.c26 * "sigs" contains bits indicating signals which need to be processed.
28 public int sigs; variable
53 sigs |= S_INTERRUPT;
79 sigs |= S_STOP;
95 sigs |= S_WINCH;
110 sigs |= S_WINCH;
131 sigs |= S_INTERRUPT;
194 * A received signal cause a bit to be set in "sigs".
201 if ((tsignals = sigs) == 0)
203 sigs
[all...]
H A Dttyin.c27 extern int sigs;
H A Dforwback.c25 extern int sigs;
H A Dos.c61 extern int sigs;
H A Dcommand.c25 extern int sigs;
981 while (!sigs)
998 if (sigs && !ABORT_SIGS())
1038 if (sigs)
1056 if (sigs)
1062 if (sigs)
H A Dtags.c23 extern int sigs;
546 if (sigs)
H A Dinput.c27 extern int sigs;
H A Dlinenum.c68 extern int sigs;
/freebsd-9.3-release/sys/contrib/ngatm/netnatm/saal/
H A Dsscfupriv.h55 sscfu_sigq_head_t sigs; /* signal queue */ member in struct:sscfu
H A Dsaal_sscfu.c91 SIGQ_INIT(&sscf->sigs);
105 SIGQ_CLEAR(&sscf->sigs);
114 SIGQ_CLEAR(&sscf->sigs);
542 SIGQ_APPEND(&sscf->sigs, s);
560 while ((s = SIGQ_GET(&sscf->sigs)) != NULL) {
/freebsd-9.3-release/bin/sh/
H A Derror.c105 sigset_t sigs; local
118 sigemptyset(&sigs);
119 sigprocmask(SIG_SETMASK, &sigs, NULL);
H A Dtrap.c512 sigset_t sigs; local
547 sigemptyset(&sigs);
548 sigaddset(&sigs, sig);
549 sigprocmask(SIG_UNBLOCK, &sigs, NULL);
/freebsd-9.3-release/sys/contrib/ngatm/netnatm/api/
H A Dcc_sig.c125 TAILQ_INSERT_TAIL(&user->cc->sigs, s, link);
140 TAILQ_INSERT_TAIL(&user->cc->sigs, s, link);
166 TAILQ_INSERT_TAIL(&conn->cc->sigs, s, link);
206 TAILQ_INSERT_TAIL(&conn->cc->sigs, s, link);
227 TAILQ_INSERT_TAIL(&conn->cc->sigs, s, link);
237 TAILQ_INSERT_AFTER(&conn->cc->sigs, s, s1, link);
256 s = TAILQ_FIRST(&cc->sigs);
262 TAILQ_REMOVE(&cc->sigs, s, link);
312 while ((s = TAILQ_FIRST(&cc->sigs)) != NULL) {
313 TAILQ_REMOVE(&cc->sigs,
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dser-e7kpc.c106 sigs[] = variable in typeref:struct:sw
139 for (try = 0; sigs[try].sw; try++)
142 board_at = sigs[try].addr - dsbase;
154 if (val == (0xaaa0 | sigs[try].sw))
164 sigs[try].addr);
H A Dinfrun.c225 #define SET_SIGS(nsigs,sigs,flags) \
229 if ((sigs)[signum]) \
233 #define UNSET_SIGS(nsigs,sigs,flags) \
237 if ((sigs)[signum]) \
3473 unsigned char *sigs;
3484 sigs = (unsigned char *) alloca (nsigs);
3485 memset (sigs, 0, nsigs);
3520 SET_SIGS (nsigs, sigs, signal_stop);
3521 SET_SIGS (nsigs, sigs, signal_print);
3525 UNSET_SIGS (nsigs, sigs, signal_progra
3466 unsigned char *sigs; local
[all...]
/freebsd-9.3-release/contrib/bind9/lib/lwres/
H A Dlwres_grbn.c190 lwres_buffer_putmem(b, req->sigs[x], datalen);
297 grbn->sigs = NULL;
323 grbn->sigs = CTXMALLOC(sizeof(char *) * nsigs);
324 if (grbn->sigs == NULL) {
357 ret = lwres_data_parse(b, &grbn->sigs[x], &grbn->siglen[x]);
377 if (grbn->sigs != NULL)
378 CTXFREE(grbn->sigs, sizeof(char *) * nsigs);
420 CTXFREE(grbn->sigs, sizeof(char *) * grbn->nsigs);
H A Dgetrrset.c63 * unsigned int rri_nsigs; // size of sigs array
249 memmove(rrset->rri_sigs[i].rdi_data, response->sigs[i],
/freebsd-9.3-release/contrib/nvi/ex/
H A Dex_shell.c225 SIGS const sigs[] = { variable
373 sigp = &sigs[0]; n < sizeof(sigs) / sizeof(sigs[0]); ++n, ++sigp)
/freebsd-9.3-release/contrib/bind9/bin/named/
H A Dlwdgrbn.c260 grbn->sigs = NULL;
310 grbn->sigs = isc_mem_get(cm->mctx, grbn->nsigs *
312 if (grbn->sigs == NULL)
320 result = fill_array(&i, sigrdataset, grbn->nsigs, grbn->sigs,
347 if (grbn->sigs != NULL)
348 isc_mem_put(cm->mctx, grbn->sigs,
377 if (grbn->sigs != NULL)
378 isc_mem_put(cm->mctx, grbn->sigs,
/freebsd-9.3-release/gnu/usr.bin/rcs/lib/
H A Drcsutil.c618 setup_catchsig(sig, sigs)
620 int sigs;
625 for (i=sigs; 0<=--i; ) {
639 for (j=sigs; 0<=--j; )
660 setup_catchsig(sig, sigs)
662 int sigs;
668 for (i=sigs; 0<=--i; )
671 for (i=sigs; 0<=--i; )
683 setup_catchsig(sig, sigs)
685 int sigs;
[all...]
/freebsd-9.3-release/contrib/diff/src/
H A Dsdiff.c67 #define NUM_SIGS (sizeof sigs / sizeof *sigs)
68 static int const sigs[] = { variable
799 sigaddset (&catchaction.sa_mask, sigs[i]);
805 sigaction (sigs[i], 0, &initial_action[i]);
807 initial_action[i] = signal (sigs[i], SIG_IGN);
810 signal_handler (sigs[i], catchsig);
829 if ((! s || sigs[i] == s) && initial_handler (i) != SIG_IGN)
832 sigaction (sigs[i], &initial_action[i], 0);
834 signal (sigs[
[all...]
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Ddnssec.c1476 dns_rdataset_t sigs; local
1481 dns_rdataset_init(&sigs);
1482 dns_rdataset_clone(rrsigs, &sigs);
1491 for (result = dns_rdataset_first(&sigs);
1493 result = dns_rdataset_next(&sigs)) {
1497 dns_rdataset_current(&sigs, &rdata);
1512 if (dns_rdataset_isassociated(&sigs))
1513 dns_rdataset_disassociate(&sigs);
/freebsd-9.3-release/contrib/bind9/lib/lwres/include/lwres/
H A Dlwres.h202 unsigned char **sigs; member in struct:__anon296

Completed in 370 milliseconds

12