blob: b0b4e92c8b1b4bfb0687962f9a33f2795a6ba27a (
plain)
1
2
3
4
5
6
7
8
9
|
#include "asm/unistd_64.h" // for __NR_rt_sigpending
#include <signal.h> // for sigpending, sigset_t
#include <syscall.h> // for __syscall_1, syscall
int sigpending(sigset_t *set)
{
return syscall(rt_sigpending, set);
}
|