mirror of
https://github.com/fluencelabs/musl
synced 2025-05-29 15:41:36 +00:00
the new approach relies on the fact that the only ways to create sigset_t objects without invoking UB are to use the sig*set() functions, or from the masks returned by sigprocmask, sigaction, etc. or in the ucontext_t argument to a signal handler. thus, as long as sigfillset and sigaddset avoid adding the "protected" signals, there is no way the application will ever obtain a sigset_t including these bits, and thus no need to add the overhead of checking/clearing them when sigprocmask or sigaction is called. note that the old code actually *failed* to remove the bits from sa_mask when sigaction was called. the new implementations are also significantly smaller, simpler, and faster due to ignoring the useless "GNU HURD signals" 65-1024, which are not used and, if there's any sanity in the world, never will be used.
14 lines
268 B
C
14 lines
268 B
C
#include <signal.h>
|
|
#include <errno.h>
|
|
|
|
int sigdelset(sigset_t *set, int sig)
|
|
{
|
|
unsigned s = sig-1;
|
|
if (s >= 8*sizeof(sigset_t) || s-32U<3) {
|
|
errno = EINVAL;
|
|
return -1;
|
|
}
|
|
set->__bits[s/8/sizeof *set->__bits] &=~(1UL<<(s&8*sizeof *set->__bits-1));
|
|
return 0;
|
|
}
|