123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- #ifndef __GBLIBC_SYS_STAT_H
- #define __GBLIBC_SYS_STAT_H
- #include <stdint.h>
- #include <bits/alltypes.h>
- #include <sys/types.h>
- #define STATX_TYPE (1 << 0)
- #define STATX_MODE (1 << 1)
- #define STATX_NLINK (1 << 2)
- #define STATX_UID (1 << 3)
- #define STATX_GID (1 << 4)
- #define STATX_ATIME (1 << 5)
- #define STATX_MTIME (1 << 6)
- #define STATX_CTIME (1 << 7)
- #define STATX_INO (1 << 8)
- #define STATX_SIZE (1 << 9)
- #define STATX_BLOCKS (1 << 10)
- #define STATX_BASIC_STATS (0x7ff)
- #define STATX_BTIME (1 << 11)
- #define S_IFMT 0170000
- #define S_IFSOCK 0140000
- #define S_IFLNK 0120000
- #define S_IFREG 0100000
- #define S_IFBLK 0060000
- #define S_IFDIR 0040000
- #define S_IFCHR 0020000
- #define S_IFIFO 0010000
- #define S_ISSOCK(m) (((m)&S_IFMT) == S_IFSOCK)
- #define S_ISLNK(m) (((m)&S_IFMT) == S_IFLNK)
- #define S_ISREG(m) (((m)&S_IFMT) == S_IFREG)
- #define S_ISBLK(m) (((m)&S_IFMT) == S_IFBLK)
- #define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR)
- #define S_ISCHR(m) (((m)&S_IFMT) == S_IFCHR)
- #define S_ISFIFO(m) (((m)&S_IFMT) == S_IFIFO)
- #ifdef __cplusplus
- extern "C" {
- #endif
- struct statx_timestamp {
- int64_t tv_sec;
- uint32_t tv_nsec;
- int32_t __reserved;
- };
- struct statx {
- uint32_t stx_mask;
- uint32_t stx_blksize;
- uint64_t stx_attributes;
- uint32_t stx_nlink;
- uint32_t stx_uid;
- uint32_t stx_gid;
- uint16_t stx_mode;
- uint16_t __spare0[1];
- uint64_t stx_ino;
- uint64_t stx_size;
- uint64_t stx_blocks;
- uint64_t stx_attributes_mask;
- struct statx_timestamp stx_atime;
- struct statx_timestamp stx_btime;
- struct statx_timestamp stx_ctime;
- struct statx_timestamp stx_mtime;
- uint32_t stx_rdev_major;
- uint32_t stx_rdev_minor;
- uint32_t stx_dev_major;
- uint32_t stx_dev_minor;
- uint64_t stx_mnt_id;
- uint64_t stx_dio_alignment[13];
- };
- struct stat {
- dev_t st_dev;
- ino_t st_ino;
- nlink_t st_nlink;
- mode_t st_mode;
- uid_t st_uid;
- gid_t st_gid;
- dev_t st_rdev;
- off_t st_size;
- blksize_t st_blksize;
- blkcnt_t st_blocks;
- struct timespec st_atim;
- struct timespec st_mtim;
- struct timespec st_ctim;
- long __padding[3];
- };
- int stat(const char* pathname, struct stat* statbuf);
- int fstat(int fd, struct stat* statbuf);
- mode_t umask(mode_t mask);
- #ifdef __cplusplus
- }
- #endif
- #endif
|