5e925d6d9c
* linux/i386/syscallent.h [383]: Add statx entry. * linux/x32/syscallent.h [332]: Likewise. * linux/x86_64/syscallent.h [332]: Likewise. * pathtrace.c (pathtrace_match): Handle SEN_statx. * statx.c: New file. * statx.h: Likewise. * Makefile.am (strace_SOURCES): Add them. * tests/.gitignore: Add statx. * tests/Makefile.am (check_PROGRAMS): Likewise. (DECODER_TESTS): Add statx.test. * tests/statx.c: New file. * tests/statx.test: Likewise. * tests/xstatx.c: Modify to support statx. * xlat/at_statx_sync_types.in: New file. * xlat/statx_attrs.in: Likewise. * xlat/statx_masks.in: Likewise. * NEWS: Mention this change.
16 lines
346 B
Plaintext
16 lines
346 B
Plaintext
STATX_ALL 0x00000fffU
|
|
STATX_BASIC_STATS 0x000007ffU
|
|
|
|
STATX_TYPE 0x00000001U
|
|
STATX_MODE 0x00000002U
|
|
STATX_NLINK 0x00000004U
|
|
STATX_UID 0x00000008U
|
|
STATX_GID 0x00000010U
|
|
STATX_ATIME 0x00000020U
|
|
STATX_MTIME 0x00000040U
|
|
STATX_CTIME 0x00000080U
|
|
STATX_INO 0x00000100U
|
|
STATX_SIZE 0x00000200U
|
|
STATX_BLOCKS 0x00000400U
|
|
STATX_BTIME 0x00000800U
|