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
/
listen.c
blob
f51006da62c280f6d9c6f6255714a9106ef1270f
1
/*
2
* SYSCALL_DEFINE2(listen, int, fd, int, backlog)
3
*/
4
#include
"sanitise.h"
5
6
struct
syscallentry syscall_listen
= {
7
.
name
=
"listen"
,
8
.
num_args
=
2
,
9
.
arg1name
=
"fd"
,
10
.
arg1type
=
ARG_FD
,
11
.
arg2name
=
"backlog"
,
12
.
flags
=
NEED_ALARM
,
13
};