add to, and prioritize the TODO a little.
[trinity.git] / syscalls / utime.c
blobc7f0b4a1d4f9098df1900339fba20b41fd1fac61
1 /*
2 * SYSCALL_DEFINE2(utime, char __user *, filename, struct utimbuf __user *, times)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_utime = {
7 .name = "utime",
8 .num_args = 2,
9 .arg1name = "filename",
10 .arg1type = ARG_PATHNAME,
11 .arg2name = "times",
12 .arg2type = ARG_ADDRESS,