mirror of
https://github.com/fluencelabs/musl
synced 2025-06-12 22:41:37 +00:00
optimize compound-literal sigset_t's not to contain useless hurd bits
This commit is contained in:
@ -51,7 +51,7 @@ static void install_handler()
|
||||
.sa_flags = SA_SIGINFO | SA_RESTART
|
||||
};
|
||||
__libc_sigaction(SIGTIMER, &sa, 0);
|
||||
__syscall(SYS_rt_sigprocmask, SIG_UNBLOCK, &SIGTIMER_SET, 0, 8);
|
||||
__syscall(SYS_rt_sigprocmask, SIG_UNBLOCK, SIGTIMER_SET, 0, 8);
|
||||
}
|
||||
|
||||
static void *start(void *arg)
|
||||
|
Reference in New Issue
Block a user