merge newfstat variants
[trinity.git] / syscalls / setitimer.c
blob2e4c7f89b54a5a53a4bd645b482dc4e39e024921
1 /*
2 * SYSCALL_DEFINE3(setitimer, int, which, struct itimerval __user *, value, struct itimerval __user *, ovalue)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_setitimer = {
7 .flags = AVOID_SYSCALL, /* setitimer interferes with alarm() */
8 .name = "setitimer",
9 .num_args = 3,
10 .arg1name = "which",
11 .arg2name = "value",
12 .arg2type = ARG_ADDRESS,
13 .arg3name = "ovalue",
14 .arg3type = ARG_ADDRESS,