var scope reduction
[trinity.git] / syscalls / io_cancel.c
blobca8d40805e950a43baefc71ca59c67f75239e20f
1 /*
2 * SYSCALL_DEFINE3(io_cancel, aio_context_t, ctx_id, struct iocb __user *, iocb,
3 struct io_event __user *, result)
4 */
5 #include "sanitise.h"
7 struct syscallentry syscall_io_cancel = {
8 .name = "io_cancel",
9 .num_args = 3,
10 .arg1name = "ctx_id",
11 .arg2name = "iocb",
12 .arg2type = ARG_ADDRESS,
13 .arg3name = "result",
14 .arg3type = ARG_ADDRESS,