HomeSort by: relevance | last modified time | path
    Searched defs:sigs (Results 1 - 9 of 9) sorted by relevancy

  /src/tests/lib/libc/sys/
t_getitimer.c 221 sigset_t sigs, mask; local in function:ATF_TC_BODY
224 RL(sigemptyset(&sigs));
225 RL(sigaddset(&sigs, SIGALRM));
226 RL(sigprocmask(SIG_BLOCK, &sigs, &mask));
236 sigtimedwait(&sigs, NULL, &(const struct timespec){2, 0}) == -1);
t_timer_create.c 433 sigset_t sigs, mask; local in function:ATF_TC_BODY
436 RL(sigemptyset(&sigs));
437 RL(sigaddset(&sigs, SIGALRM));
438 RL(sigprocmask(SIG_BLOCK, &sigs, &mask));
467 sigtimedwait(&sigs, NULL, &(const struct timespec){2, 0}) == -1);
  /src/distrib/utils/more/
signal.c 59 * "sigs" contains bits indicating signals which need to be processed.
61 int sigs; variable in typeref:typename:int
83 sigs |= S_STOP;
98 sigs |= S_WINCH;
110 sigs |= S_WINCH;
169 * A received signal cause a bit to be set in "sigs".
176 if ((tsignals = sigs) == 0)
178 sigs = 0;
  /src/bin/sh/
main.c 271 static int sigs[] = { local in function:main
278 #define SIGSSIZE (sizeof(sigs)/sizeof(sigs[0]))
282 setsignal(sigs[i], 0);
trap.c 856 sigset_t sigs; local in function:exitshell_savedstatus
915 sigemptyset(&sigs);
916 sigaddset(&sigs, s);
917 sigprocmask(SIG_UNBLOCK, &sigs, NULL);
  /src/usr.bin/rsh/
rsh.c 76 static int sigs[] = { SIGINT, SIGTERM, SIGQUIT }; variable in typeref:typename:int[]
267 for (i = 0; i < sizeof(sigs) / sizeof(sigs[0]); i++)
268 (void)sigaddset(&nset, sigs[i]);
275 for (i = 0; i < sizeof(sigs) / sizeof(sigs[0]); i++) {
280 (void)sigaction(sigs[i], &sa, NULL);
  /src/lib/libc/resolv/
res_send.c 1208 sigset_t sigs; local in function:pselect
1217 sigprocmask(SIG_SETMASK, sigmask, &sigs);
1220 sigprocmask(SIG_SETMASK, &sigs, NULL);
  /src/lib/libpuffs/
puffs.c 758 static int sigs[NSIG] = { 0, }; variable in typeref:typename:int[]
773 if (!sigs[sig])
775 sigs[sig] = 1;
990 if (sigs[i]) {
  /src/sys/external/bsd/drm/dist/bsd-core/
drmP.h 668 struct drm_vbl_sig_list sigs; /* signal list to send on VBLANK */ member in struct:drm_vblank_info

Completed in 17 milliseconds