merge newfstat variants
[trinity.git] / syscalls / io_submit.c
blob8c37c36e3fd8f6b8ffd9a129573821cd8537a7e9
1 /*
2 * SYSCALL_DEFINE3(io_submit, aio_context_t, ctx_id, long, nr,
3 struct iocb __user * __user *, iocbpp)
4 */
5 #include "sanitise.h"
7 struct syscallentry syscall_io_submit = {
8 .name = "io_submit",
9 .num_args = 3,
10 .arg1name = "ctx_id",
11 .arg2name = "nr",
12 .arg2type = ARG_LEN,
13 .arg3name = "iocbpp",
14 .arg3type = ARG_ADDRESS,
15 .flags = NEED_ALARM,