Home | History | Annotate | Download | only in include

Lines Matching refs:set

50  * architectures except for the 'mips' one which set it to 128.
58 static __inline__ int sigismember(sigset_t *set, int signum)
60 unsigned long *local_set = (unsigned long *)set;
66 static __inline__ int sigaddset(sigset_t *set, int signum)
68 unsigned long *local_set = (unsigned long *)set;
75 static __inline__ int sigdelset(sigset_t *set, int signum)
77 unsigned long *local_set = (unsigned long *)set;
84 static __inline__ int sigemptyset(sigset_t *set)
86 memset(set, 0, sizeof *set);
90 static __inline__ int sigfillset(sigset_t *set)
92 memset(set, ~0, sizeof *set);
119 extern int sigwait(const sigset_t *set, int *sig);