note a leak that needs fixing eventually
[trinity.git] / syscalls / settimeofday.c
blobad994843c3a17571794a2a1f1272780a6f65011c
1 /*
2 * SYSCALL_DEFINE2(settimeofday, struct timeval __user *, tv, struct timezone __user *, tz)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_settimeofday = {
7 .name = "settimeofday",
8 .num_args = 2,
9 .arg1name = "tv",
10 .arg1type = ARG_ADDRESS,
11 .arg2name = "tz",
12 .arg2type = ARG_ADDRESS,