move_pages: just use calloc
[trinity.git] / syscalls / futimesat.c
blobda7fc85b7d46be6e5c0a93d5b0288b80bb973790
1 /*
2 * SYSCALL_DEFINE3(futimesat, int, dfd, const char __user *, filename,
3 struct timeval __user *, utimes)
4 */
5 #include "sanitise.h"
7 struct syscallentry syscall_futimesat = {
8 .name = "futimesat",
9 .num_args = 3,
10 .arg1name = "dfd",
11 .arg1type = ARG_FD,
12 .arg2name = "filename",
13 .arg2type = ARG_PATHNAME,
14 .arg3name = "utimes",
15 .arg3type = ARG_ADDRESS,
16 .rettype = RET_ZERO_SUCCESS,
17 .flags = NEED_ALARM,