remove [64] cleanup TODO
[trinity.git] / syscalls / utimensat.c
blob1ffa43b254a25e1169da56d012cf1d70b5efab26
1 /*
2 * SYSCALL_DEFINE4(utimensat, int, dfd, const char __user *, filename,
3 struct timespec __user *, utimes, int, flags)
4 */
5 #include <fcntl.h>
6 #include "sanitise.h"
8 struct syscallentry syscall_utimensat = {
9 .name = "utimensat",
10 .num_args = 4,
11 .arg1name = "dfd",
12 .arg1type = ARG_FD,
13 .arg2name = "filename",
14 .arg2type = ARG_PATHNAME,
15 .arg3name = "utimes",
16 .arg3type = ARG_ADDRESS,
17 .arg4name = "flags",
18 .arg4type = ARG_LIST,
19 .arg4list = {
20 .num = 1,
21 .values = { AT_SYMLINK_NOFOLLOW },
23 .flags = NEED_ALARM,