var scope reduction
[trinity.git] / syscalls / rt_sigtimedwait.c
blob9850bc7e51bd9a9c1e1723248f6663dd826f94a7
1 /*
2 * SYSCALL_DEFINE4(rt_sigtimedwait, const sigset_t __user *, uthese,
3 siginfo_t __user *, uinfo, const struct timespec __user *, uts,
4 size_t, sigsetsize)
5 */
6 #include "sanitise.h"
8 struct syscallentry syscall_rt_sigtimedwait = {
9 .name = "rt_sigtimedwait",
10 .num_args = 4,
11 .arg1name = "uthese",
12 .arg2name = "uinfo",
13 .arg2type = ARG_ADDRESS,
14 .arg3name = "uts",
15 .arg3type = ARG_ADDRESS,
16 .arg4name = "sigsetsize",
17 .arg4type = ARG_ADDRESS,
18 .flags = NEED_ALARM,