musl/src/signal/sigprocmask.c
Rich Felker 016a5dc192 use a separate signal from SIGCANCEL for SIGEV_THREAD timers
otherwise we cannot support an application's desire to use
asynchronous cancellation within the callback function. this change
also slightly debloats pthread_create.c.
2011-04-14 12:51:00 -04:00

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);