consistency: change all remaining syscalls to use SYS_ rather than __NR_ prefix
[musl] / src / thread / pthread_create.c
index ec329f5..acbd5a4 100644 (file)
@@ -36,7 +36,7 @@ void __pthread_unwind_next(struct __ptcb *cb)
                exit(0);
 
        if (self->detached && self->map_base) {
-               __syscall(__NR_rt_sigprocmask, SIG_BLOCK, (long)(uint64_t[1]){-1},0,8);
+               __syscall(SYS_rt_sigprocmask, SIG_BLOCK, (long)(uint64_t[1]){-1},0,8);
                __unmapself(self->map_base, self->map_size);
        }