merge newfstat variants
[trinity.git] / syscalls / pselect6.c
bloba8a9653b8ab25751d7e8db7016f3b5464689aad3
1 /*
2 * SYSCALL_DEFINE6(pselect6, int, n, fd_set __user *, inp, fd_set __user *, outp,
3 fd_set __user *, exp, struct timespec __user *, tsp,
4 void __user *, sig)
5 */
6 #include "sanitise.h"
8 struct syscallentry syscall_pselect6 = {
9 .name = "pselect6",
10 .num_args = 6,
11 .flags = AVOID_SYSCALL, // Can cause the fuzzer to hang without timeout firing
12 .arg1name = "n",
13 .arg2name = "inp",
14 .arg2type = ARG_ADDRESS,
15 .arg3name = "outp",
16 .arg3type = ARG_ADDRESS,
17 .arg4name = "exp",
18 .arg4type = ARG_ADDRESS,
19 .arg5name = "tsp",
20 .arg5type = ARG_ADDRESS,
21 .arg6name = "sig",
22 .arg6type = ARG_ADDRESS,