mirror of
https://github.com/fluencelabs/musl
synced 2025-07-01 07:32:04 +00:00
global cleanup to use the new syscall interface
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
|
||||
int __libc_sigprocmask(int how, const sigset_t *set, sigset_t *old)
|
||||
{
|
||||
return syscall4(__NR_rt_sigprocmask, how, (long)set, (long)old, 8);
|
||||
return syscall(SYS_rt_sigprocmask, how, set, old, 8);
|
||||
}
|
||||
|
||||
int __sigprocmask(int how, const sigset_t *set, sigset_t *old)
|
||||
|
Reference in New Issue
Block a user