Home | History | Annotate | Download | only in include

Lines Matching refs:set

51  * architectures except for the 'mips' one which set it to 128.
60 static __inline__ int sigismember(sigset_t *set, int signum)
62 unsigned long *local_set = (unsigned long *)set;
68 static __inline__ int sigaddset(sigset_t *set, int signum)
70 unsigned long *local_set = (unsigned long *)set;
77 static __inline__ int sigdelset(sigset_t *set, int signum)
79 unsigned long *local_set = (unsigned long *)set;
86 static __inline__ int sigemptyset(sigset_t *set)
88 memset(set, 0, sizeof *set);
92 static __inline__ int sigfillset(sigset_t *set)
94 memset(set, ~0, sizeof *set);
121 extern int sigwait(const sigset_t *set, int *sig);