sigaddset.c\signal\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/signal/sigaddset.c
blob: 085d1f4ab98d2d726ad401bebd89881e11c633af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <signal.h>
#include <errno.h>
int sigaddset(sigset_t *set, int sig)
{
	unsigned s = sig-1;
	if (s >= _NSIG-1 || sig-32U < 3) {
		errno = EINVAL;
		return -1;
	}
	set->__bits[s/8/sizeof *set->__bits] |= 1UL<<(s&8*sizeof *set->__bits-1);
	return 0;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月10日 00:22:22 +0000

AltStyle によって変換されたページ (->オリジナル) /