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
move_pages: just use calloc
[trinity.git]
/
syscalls
/
getitimer.c
blob
528ade274c52850236ba63b4d5cc9c1c3c255a54
1
/*
2
* SYSCALL_DEFINE2(getitimer, int, which, struct itimerval __user *, value)
3
*/
4
#include
"sanitise.h"
5
6
struct
syscallentry syscall_getitimer
= {
7
.
name
=
"getitimer"
,
8
.
num_args
=
2
,
9
.
arg1name
=
"which"
,
10
.
arg2name
=
"value"
,
11
.
arg2type
=
ARG_ADDRESS
,
12
.
rettype
=
RET_ZERO_SUCCESS
,
13
};