Stat syscall: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

24 April 2024

18 April 2024

7 March 2024

5 January 2024

23 November 2023

  • curprev 10:3310:33, 23 November 2023Helpful talk contribsm 2,892 bytes +21 No edit summary
  • curprev 10:3310:33, 23 November 2023Helpful talk contribsm 2,871 bytes +113 No edit summary
  • curprev 10:3210:32, 23 November 2023Helpful talk contribs 2,758 bytes +2,758 Created page with "{{stub}} The struct used for stat in C is defined like: <syntaxhighlight lang="c"> struct stat { dev_t st_dev; ino_t st_ino; mode_t st_mode; nlink_t st_nlink; uid_t st_uid; gid_t st_gid; dev_t st_rdev; off_t st_size; time_t st_atime; time_t st_mtime; time_t st_ctime; blksize_t st_blksize; blkcnt_t st_blocks; mode_t st_attr; }; </syntaxhighlight> (and a stat64 variation the same names but with 64-bit inodes, offsets, and block counts) '''Meanings''' (app..."