HomeSort by relevance Sort by last modified time
    Searched full:blocked_set (Results 1 - 6 of 6) sorted by null

  /external/bison/lib/
sigprocmask.c 185 static volatile sigset_t blocked_set /* = 0 */; variable
225 *old_set = blocked_set;
236 new_blocked_set = blocked_set | *set;
242 new_blocked_set = blocked_set & ~*set;
248 to_unblock = blocked_set & ~new_blocked_set;
249 to_block = new_blocked_set & ~blocked_set;
260 blocked_set |= 1U << sig;
278 blocked_set &= ~(1U << sig);
307 if (blocked_set & (1U << sig))
337 if (blocked_set & (1U << SIGPIPE)
    [all...]
signal.in.h 274 # define SIG_BLOCK 0 /* blocked_set = blocked_set | *set; */
275 # define SIG_SETMASK 1 /* blocked_set = *set; */
276 # define SIG_UNBLOCK 2 /* blocked_set = blocked_set & ~*set; */
  /external/bison/darwin-lib/
signal.h 586 # define SIG_BLOCK 0 /* blocked_set = blocked_set | *set; */
587 # define SIG_SETMASK 1 /* blocked_set = *set; */
588 # define SIG_UNBLOCK 2 /* blocked_set = blocked_set & ~*set; */
  /external/bison/linux-lib/
signal.h 586 # define SIG_BLOCK 0 /* blocked_set = blocked_set | *set; */
587 # define SIG_SETMASK 1 /* blocked_set = *set; */
588 # define SIG_UNBLOCK 2 /* blocked_set = blocked_set & ~*set; */
  /external/strace/
strace.c 128 static sigset_t empty_set, blocked_set; variable
386 sigprocmask(SIG_BLOCK, &blocked_set, NULL);
456 sigprocmask(SIG_BLOCK, &blocked_set, NULL);
1020 sigemptyset(&blocked_set);
1027 sigaddset(&blocked_set, SIGHUP);
1028 sigaddset(&blocked_set, SIGINT);
1029 sigaddset(&blocked_set, SIGQUIT);
1030 sigaddset(&blocked_set, SIGPIPE);
1031 sigaddset(&blocked_set, SIGTERM);
1955 sigset_t blocked_set, empty_set; local
    [all...]
ChangeLog-CVS     [all...]

Completed in 1289 milliseconds