split up constants.h some
[trinity.git] / syscalls / ppoll.c
blobdb394b3086812ebcef5bbb5c9fd760b973132e08
1 /*
2 * SYSCALL_DEFINE5(ppoll, struct pollfd __user *, ufds, unsigned int, nfds,
3 struct timespec __user *, tsp, const sigset_t __user *, sigmask, size_t, sigsetsize)
4 */
5 #include "sanitise.h"
7 struct syscallentry syscall_ppoll = {
8 .name = "ppoll",
9 .num_args = 5,
10 .arg1name = "ufds",
11 .arg1type = ARG_ADDRESS,
12 .arg2name = "nfds",
13 .arg2type = ARG_LEN,
14 .arg3name= "tsp",
15 .arg3type = ARG_ADDRESS,
16 .arg4name = "sigmask",
17 .arg4type = ARG_ADDRESS,
18 .arg5name = "sigsetsize",
19 .flags = NEED_ALARM,