mirror of
https://github.com/fluencelabs/musl
synced 2025-05-28 07:01:35 +00:00
otherwise we cannot support an application's desire to use asynchronous cancellation within the callback function. this change also slightly debloats pthread_create.c.
31 lines
653 B
C
31 lines
653 B
C
#include <signal.h>
|
|
#include <errno.h>
|
|
#include "syscall.h"
|
|
#include "libc.h"
|
|
#include "pthread_impl.h"
|
|
|
|
int __libc_sigprocmask(int how, const sigset_t *set, sigset_t *old)
|
|
{
|
|
return syscall(SYS_rt_sigprocmask, how, set, old, 8);
|
|
}
|
|
|
|
int __sigprocmask(int how, const sigset_t *set, sigset_t *old)
|
|
{
|
|
sigset_t tmp;
|
|
if (how > 2U) {
|
|
errno = EINVAL;
|
|
return -1;
|
|
}
|
|
/* Disallow blocking thread control signals */
|
|
if (set && how != SIG_UNBLOCK) {
|
|
tmp = *set;
|
|
set = &tmp;
|
|
sigdelset(&tmp, SIGCANCEL);
|
|
sigdelset(&tmp, SIGSYSCALL);
|
|
sigdelset(&tmp, SIGTIMER);
|
|
}
|
|
return __libc_sigprocmask(how, set, old);
|
|
}
|
|
|
|
weak_alias(__sigprocmask, sigprocmask);
|