summaryrefslogtreecommitdiff
path: root/src/signal/sigtimedwait.c
blob: a0edaaf353a94aee7d5da4d44f12827bb454aa12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <signal.h>
#include <errno.h>
#include "syscall.h"
#include "libc.h"

int sigtimedwait(const sigset_t *mask, siginfo_t *si, const struct timespec *timeout)
{
	int ret;
	CANCELPT_BEGIN;
	do {
		ret = syscall(__NR_rt_sigtimedwait, mask, si, timeout, 8);
	} while (ret<0 && errno==EINTR);
	CANCELPT_END;
	return ret;
}