mirror of
https://github.com/fluencelabs/musl
synced 2025-06-23 19:52:01 +00:00
fix (hopefully) all hard-coded 8's for kernel sigset_t size
some minor changes to how hard-coded sets for thread-related purposes are handled were also needed, since the old object sizes were not necessarily sufficient. things have gotten a bit ugly in this area, and i think a cleanup is in order at some point, but for now the goal is just to get the code working on all supported archs including mips, which was badly broken by linux rejecting syscalls with the wrong sigset_t size.
This commit is contained in:
@ -8,7 +8,8 @@ weak_alias(dummy, __pthread_tsd_main);
|
||||
|
||||
static int init_main_thread()
|
||||
{
|
||||
__syscall(SYS_rt_sigprocmask, SIG_UNBLOCK, SIGPT_SET, 0, 8);
|
||||
__syscall(SYS_rt_sigprocmask, SIG_UNBLOCK,
|
||||
SIGPT_SET, 0, __SYSCALL_SSLEN);
|
||||
if (__set_thread_area(&main_thread) < 0) return -1;
|
||||
main_thread.canceldisable = libc.canceldisable;
|
||||
main_thread.tsd = (void **)__pthread_tsd_main;
|
||||
|
Reference in New Issue
Block a user