summaryrefslogtreecommitdiff
path: root/src/signal/sigprocmask.c
blob: 297e20c65f825c64d0b63bf4500595aa126e3642 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <signal.h>
#include <errno.h>

int sigprocmask(int how, const sigset_t *restrict set, sigset_t *restrict old)
{
	int r = pthread_sigmask(how, set, old);
	if (!r) return r;
	errno = r;
	return -1;
}