1 struct kstat { 2 unsigned st_dev; 3 long __pad1[3]; 4 ino_t st_ino; 5 mode_t st_mode; 6 nlink_t st_nlink; 7 uid_t st_uid; 8 gid_t st_gid; 9 unsigned st_rdev; 10 long __pad2[3]; 11 off_t st_size; 12 long st_atime_sec; 13 long st_atime_nsec; 14 long st_mtime_sec; 15 long st_mtime_nsec; 16 long st_ctime_sec; 17 long st_ctime_nsec; 18 blksize_t st_blksize; 19 long __pad3; 20 blkcnt_t st_blocks; 21 long __pad4[14]; 22 }; 23