summaryrefslogtreecommitdiff
path: root/src/signal/sigpending.c
blob: 496025a7f70693b354c494e04a6ee16bb6c1ccca (plain) (blame)
1
2
3
4
5
6
7
#include <signal.h>
#include "syscall.h"

int sigpending(sigset_t *set)
{
	return syscall(__NR_rt_sigpending, set, 8);
}