add new renameat2 syscall
[trinity.git] / syscalls / listxattr.c
blobde9583e76fa416a0492f3d4e9035d2b1eb10176f
1 /*
2 * SYSCALL_DEFINE3(listxattr, const char __user *, pathname, char __user *, list, size_t, size
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_listxattr = {
7 .name = "listxattr",
8 .num_args = 3,
9 .arg1name = "pathname",
10 .arg1type = ARG_PATHNAME,
11 .arg2name = "list",
12 .arg2type = ARG_ADDRESS,
13 .arg3name = "size",
14 .arg3type = ARG_LEN,
15 .group = GROUP_VFS,