fields-stat 947 B

1234567891011121314151617181920212223
  1. (* FreeBSD 11.0 /usr/include/sys/stat.h *)
  2. st_dev*: uint32_t; (* inode's device *)
  3. st_ino*: uint32_t; (* inode's number *)
  4. st_mode*: mode_t; (* inode protection mode *)
  5. st_nlink*: uint16_t; (* number of hard links *)
  6. st_uid*: uid_t; (* user ID of the file's owner *)
  7. st_gid*: gid_t; (* group ID of the file's group *)
  8. st_rdev*: uint32_t; (* device type *)
  9. st_atim*: timespec_t; (* time of last access *)
  10. st_mtim*: timespec_t; (* time of last data modification *)
  11. st_ctim*: timespec_t; (* time of last file status change *)
  12. st_size*: off_t; (* file size, in bytes *)
  13. st_blocks*: blkcnt_t; (* blocks allocated for file *)
  14. st_blksize*: blksize_t; (* optimal blocksize for I/O *)
  15. st_flags*: fflags_t; (* user defined flags for file *)
  16. st_gen*: uint32_t; (* file generation number *)
  17. st_lspare*: int32_t;
  18. __st_birthtime*: timespec_t;
  19. ___pad: ARRAY [untagged] 2 OF INTEGER;