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
var scope reduction
[trinity.git]
/
syscalls
/
syslog.c
blob
e701847d9c5cf60c83d84aea424144cd6d0c8b10
1
/*
2
* SYSCALL_DEFINE3(syslog, int, type, char __user *, buf, int, len)
3
*/
4
#include
"sanitise.h"
5
6
struct
syscallentry syscall_syslog
= {
7
.
name
=
"syslog"
,
8
.
num_args
=
3
,
9
.
arg1name
=
"type"
,
10
.
arg2name
=
"buf"
,
11
.
arg2type
=
ARG_ADDRESS
,
12
.
arg3name
=
"len"
,
13
.
arg3type
=
ARG_LEN
,
14
};