diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2017-08-16 13:42:04 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2017-08-16 13:42:04 +0200 |
| commit | f93be58429d77a7928d96205e7ee34e4bbb7cc9c (patch) | |
| tree | c8c56fd4ba94b738778c951799799f2ac5629ead /sys/xattr_amd64.const | |
| parent | 6a0246bf72830c3461e9784c104894882738541f (diff) | |
sys: add some known xattr names
Move xattr syscalls to own file and better describe xattr names.
They usually have prefix+name structure and there are some
known values.
Diffstat (limited to 'sys/xattr_amd64.const')
| -rw-r--r-- | sys/xattr_amd64.const | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sys/xattr_amd64.const b/sys/xattr_amd64.const new file mode 100644 index 000000000..57417ef4d --- /dev/null +++ b/sys/xattr_amd64.const @@ -0,0 +1,15 @@ +# AUTOGENERATED FILE +XATTR_CREATE = 1 +XATTR_REPLACE = 2 +__NR_fgetxattr = 193 +__NR_flistxattr = 196 +__NR_fremovexattr = 199 +__NR_fsetxattr = 190 +__NR_getxattr = 191 +__NR_lgetxattr = 192 +__NR_listxattr = 194 +__NR_llistxattr = 195 +__NR_lremovexattr = 198 +__NR_lsetxattr = 189 +__NR_removexattr = 197 +__NR_setxattr = 188 |
