merge newfstat variants
[trinity.git] / syscalls / readlinkat.c
blob086fc37319bd66080142ecc830aaa8390665b444
1 /*
2 * SYSCALL_DEFINE4(readlinkat, int, dfd, const char __user *, pathname,
3 char __user *, buf, int, bufsiz)
4 */
5 #include "sanitise.h"
7 struct syscallentry syscall_readlinkat = {
8 .name = "readlinkat",
9 .num_args = 4,
10 .arg1name = "dfd",
11 .arg1type = ARG_FD,
12 .arg2name = "pathname",
13 .arg2type = ARG_PATHNAME,
14 .arg3name = "buf",
15 .arg3type = ARG_ADDRESS,
16 .arg4name = "bufsiz",
17 .arg4type = ARG_LEN,
18 .flags = NEED_ALARM,
19 .group = GROUP_VFS,