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
add new renameat2 syscall
[trinity.git]
/
syscalls
/
ipc.c
blob
534b86277d3885e2dd3685031aee3b2499617d48
1
/*
2
* SYSCALL_DEFINE6(ipc, unsigned int, call, int, first, unsigned long, second,
3
unsigned long, third, void __user *, ptr, long, fifth)
4
*/
5
#include
"sanitise.h"
6
7
struct
syscallentry syscall_ipc
= {
8
.
name
=
"ipc"
,
9
.
num_args
=
6
,
10
.
arg1name
=
"call"
,
11
.
arg2name
=
"first"
,
12
.
arg3name
=
"second"
,
13
.
arg4name
=
"third"
,
14
.
arg5name
=
"ptr"
,
15
.
arg5type
=
ARG_ADDRESS
,
16
.
arg6name
=
"fifth"
,
17
};