remove __SYSCALL_SSLEN arch macro in favor of using public _NSIG
[musl] / src / thread / pthread_self.c
index 23dbaa5..c50a2fb 100644 (file)
@@ -9,7 +9,7 @@ weak_alias(dummy, __pthread_tsd_main);
 static int init_main_thread()
 {
        __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK,
-               SIGPT_SET, 0, __SYSCALL_SSLEN);
+               SIGPT_SET, 0, _NSIG/8);
        if (__set_thread_area(TP_ADJ(main_thread)) < 0) return -1;
        main_thread->canceldisable = libc.canceldisable;
        main_thread->tsd = (void **)__pthread_tsd_main;