blob: d55a43103f78f49e6974892be7e5df21af221fdd (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <signal.h>
#include <syscall.h>
#define _NSIG 64
int sigtimedwait(const sigset_t *restrict set, siginfo_t *restrict info,
const struct timespec *restrict timeout)
{
return syscall(rt_sigtimedwait, set, info, timeout, _NSIG / 8);
}
|