Searched refs:_NSIG (Results 1 - 25 of 51) sorted by relevance

123

/seL4-camkes-master/projects/musllibc/src/signal/
H A Dsigrtmax.c5 return _NSIG-1;
H A Dsigisemptyset.c7 static const unsigned long zeroset[_NSIG/8/sizeof(long)];
8 return !memcmp(set, &zeroset, _NSIG/8);
H A Dblock.c6 #if ULONG_MAX == 0xffffffff && _NSIG == 129
17 #if _NSIG == 65
23 #if _NSIG == 65
33 __syscall(SYS_rt_sigprocmask, SIG_BLOCK, &all_mask, set, _NSIG/8);
38 __syscall(SYS_rt_sigprocmask, SIG_BLOCK, &app_mask, set, _NSIG/8);
43 __syscall(SYS_rt_sigprocmask, SIG_SETMASK, set, 0, _NSIG/8);
H A Dsigemptyset.c7 if (sizeof(long)==4 || _NSIG > 65) set->__bits[1] = 0;
8 if (sizeof(long)==4 && _NSIG > 65) {
H A Dsigpending.c6 return syscall(SYS_rt_sigpending, set, _NSIG/8);
H A Dsigsuspend.c7 return syscall_cp(SYS_rt_sigsuspend, mask, _NSIG/8);
H A Dsigfillset.c9 if (_NSIG > 65) {
15 if (_NSIG > 65) set->__bits[1] = 0xfffffffffffffffful;
H A Dsigismember.c6 if (s >= _NSIG-1) return 0;
H A Dsigaddset.c7 if (s >= _NSIG-1 || sig-32U < 3) {
H A Dsigandset.c4 #define SST_SIZE (_NSIG/8/sizeof(long))
H A Dsigdelset.c7 if (s >= _NSIG-1 || sig-32U < 3) {
H A Dsigorset.c4 #define SST_SIZE (_NSIG/8/sizeof(long))
H A Dsigsetjmp_tail.c9 __syscall(SYS_rt_sigprocmask, SIG_SETMASK, ret?p:0, ret?0:p, _NSIG/8);
H A Dsigtimedwait.c10 si, timeout, _NSIG/8);
H A Dsigaction.c10 static unsigned long handler_set[_NSIG/(8*sizeof(long))];
35 SIGPT_SET, 0, _NSIG/8);
56 if (sig-32U < 3 || sig-1U >= _NSIG-1) {
/seL4-camkes-master/projects/musllibc/src/linux/
H A Dsignalfd.c9 int ret = __syscall(SYS_signalfd4, fd, sigs, _NSIG/8, flags);
12 ret = __syscall(SYS_signalfd, fd, sigs, _NSIG/8);
H A Dppoll.c9 to ? (struct timespec []){*to} : 0, mask, _NSIG/8);
H A Depoll.c27 int r = __syscall(SYS_epoll_pwait, fd, ev, cnt, to, sigs, _NSIG/8);
/seL4-camkes-master/projects/musllibc/src/select/
H A Dpoll.c14 .tv_nsec = timeout%1000*1000000 }) : 0, 0, _NSIG/8);
H A Dpselect.c9 syscall_arg_t data[2] = { (uintptr_t)mask, _NSIG/8 };
H A Dselect.c13 syscall_arg_t data[2] = { 0, _NSIG/8 };
/seL4-camkes-master/projects/musllibc/src/thread/
H A Dpthread_sigmask.c9 ret = -__syscall(SYS_rt_sigprocmask, how, set, old, _NSIG/8);
/seL4-camkes-master/projects/musllibc/src/string/
H A Dstrsignal.c94 #if _NSIG > 65
111 if (signum - 1U >= _NSIG-1) signum = 0;
/seL4-camkes-master/projects/musllibc/src/internal/
H A Dpthread_impl.h45 unsigned long sigmask[_NSIG/8/sizeof(long)];
106 ((sigset_t *)(const unsigned long [_NSIG/8/sizeof(long)]){ \
109 ((sigset_t *)(const unsigned long [_NSIG/8/sizeof(long)]){ \
/seL4-camkes-master/projects/musllibc/arch/aarch64/bits/
H A Dsignal.h107 #define _NSIG 65 macro

Completed in 124 milliseconds

123