diff options
| author | Edward Tomasz Napierala <trasz@FreeBSD.org> | 2020-06-27 14:39:44 +0000 |
|---|---|---|
| committer | Edward Tomasz Napierala <trasz@FreeBSD.org> | 2020-06-27 14:39:44 +0000 |
| commit | 36507f85dcb3a7b1e94b8fb54187db856e92224a (patch) | |
| tree | 61cf39ad10c79a70f17001fb0b22eb784f5f8e03 /sys/amd64/linux32 | |
| parent | 8036e7876d23145ca4bce797608e2ffb3c06a870 (diff) | |
Notes
Diffstat (limited to 'sys/amd64/linux32')
| -rw-r--r-- | sys/amd64/linux32/syscalls.master | 78 |
1 files changed, 66 insertions, 12 deletions
diff --git a/sys/amd64/linux32/syscalls.master b/sys/amd64/linux32/syscalls.master index 44f3ee0bf8fa..6310f6ecf444 100644 --- a/sys/amd64/linux32/syscalls.master +++ b/sys/amd64/linux32/syscalls.master @@ -1217,40 +1217,94 @@ } 225 AUE_NULL UNIMPL linux_readahead 226 AUE_NULL STD { - int linux_setxattr(void); + int linux_setxattr( + const char *path, + const char *name, + const char *value, + l_size_t size, + l_int flags + ); } 227 AUE_NULL STD { - int linux_lsetxattr(void); + int linux_lsetxattr( + const char *path, + const char *name, + const char *value, + l_size_t size, + l_int flags + ); } 228 AUE_NULL STD { - int linux_fsetxattr(void); + int linux_fsetxattr( + l_int fd, + const char *name, + const char *value, + l_size_t size, + l_int flags + ); } 229 AUE_NULL STD { - int linux_getxattr(void); + int linux_getxattr( + const char *path, + const char *name, + char *value, + l_size_t size + ); } 230 AUE_NULL STD { - int linux_lgetxattr(void); + int linux_lgetxattr( + const char *path, + const char *name, + char *value, + l_size_t size + ); } 231 AUE_NULL STD { - int linux_fgetxattr(void); + int linux_fgetxattr( + l_int fd, + const char *name, + char *value, + l_size_t size + ); } 232 AUE_NULL STD { - int linux_listxattr(void); + int linux_listxattr( + const char *path, + const char *list, + l_size_t size + ); } 233 AUE_NULL STD { - int linux_llistxattr(void); + int linux_llistxattr( + const char *path, + const char *list, + l_size_t size + ); } 234 AUE_NULL STD { - int linux_flistxattr(void); + int linux_flistxattr( + l_int fd, + const char *list, + l_size_t size + ); } 235 AUE_NULL STD { - int linux_removexattr(void); + int linux_removexattr( + const char *path, + const char *name + ); } 236 AUE_NULL STD { - int linux_lremovexattr(void); + int linux_lremovexattr( + const char *path, + const char *name + ); } 237 AUE_NULL STD { - int linux_fremovexattr(void); + int linux_fremovexattr( + l_int fd, + const char *name + ); } 238 AUE_NULL STD { int linux_tkill( |
