kernel_stat.h 626 B

123456789101112131415161718192021222324252627
  1. #ifndef _BITS_STAT_STRUCT_H
  2. #define _BITS_STAT_STRUCT_H
  3. /* This file provides whatever this particular arch's kernel thinks
  4. * struct stat should look like... It turns out each arch has a
  5. * different opinion on the subject... */
  6. struct stat {
  7. unsigned int st_dev;
  8. unsigned int st_ino;
  9. unsigned int st_mode;
  10. unsigned int st_nlink;
  11. unsigned int st_uid;
  12. unsigned int st_gid;
  13. unsigned int st_rdev;
  14. long st_size;
  15. unsigned long st_atime;
  16. unsigned long st_mtime;
  17. unsigned long st_ctime;
  18. unsigned int st_blksize;
  19. int st_blocks;
  20. unsigned int st_flags;
  21. unsigned int st_gen;
  22. };
  23. #endif /* _BITS_STAT_STRUCT_H */