repo.or.cz
/
trinity.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
make-it-fail fixes
[trinity.git]
/
syscalls
/
io_cancel.c
blob
ca8d40805e950a43baefc71ca59c67f75239e20f
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"
6
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
,
15
};