remove [64] cleanup TODO
[trinity.git] / syscalls / stat.c
bloba9db058b6fc8d9085886c9c0505e70a296461e18
1 /*
2 * SYSCALL_DEFINE2(newstat, const char __user *, filename, struct stat __user *, statbuf)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_stat = {
7 .name = "stat",
8 .num_args = 2,
9 .arg1name = "filename",
10 .arg1type = ARG_PATHNAME,
11 .arg2name = "statbuf",
12 .arg2type = ARG_ADDRESS,
17 * SYSCALL_DEFINE2(stat64, const char __user *, filename,
18 struct stat64 __user *, statbuf)
21 struct syscallentry syscall_stat64 = {
22 .name = "stat64",
23 .num_args = 2,
24 .arg1name = "filename",
25 .arg1type = ARG_PATHNAME,
26 .arg2name = "statbuf",
27 .arg2type = ARG_ADDRESS,