blob: 95f485d3a222a7418c524a1cca1a9076080f13e2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <signal.h> // for sigaction, sigset_t
#include <syscall.h> // for __syscall_4, syscall
int sigaction(int sig, const struct sigaction *restrict act,
struct sigaction *restrict oact)
{
return syscall(rt_sigaction, sig, act, oact, sizeof(sigset_t));
}
|