merge unlink variants
[trinity.git] / syscalls / getitimer.c
blob528ade274c52850236ba63b4d5cc9c1c3c255a54
1 /*
2 * SYSCALL_DEFINE2(getitimer, int, which, struct itimerval __user *, value)
3 */
4 #include "sanitise.h"
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,