| ... | ... | @@ -6891,10 +6891,6 @@ pub const utsname = extern struct { |
| 6891 | 6891 | }; |
| 6892 | 6892 | pub const HOST_NAME_MAX = 64; |
| 6893 | 6893 | |
| 6894 | | /// Flags used to request specific members in `Statx` be filled out. |
| 6895 | | /// The `Statx.mask` member will be updated with what information the kernel |
| 6896 | | /// returned. Callers must check this field since support varies by kernel |
| 6897 | | /// version and filesystem. |
| 6898 | 6894 | pub const STATX = packed struct(u32) { |
| 6899 | 6895 | /// Want `mode & S.IFMT`. |
| 6900 | 6896 | TYPE: bool = false, |
| ... | ... | @@ -6982,7 +6978,9 @@ pub const statx_timestamp = extern struct { |
| 6982 | 6978 | |
| 6983 | 6979 | /// Renamed to `Statx` to not conflict with the `statx` function. |
| 6984 | 6980 | pub const Statx = extern struct { |
| 6985 | | /// Mask of bits indicating filled fields. |
| 6981 | /// Mask of bits indicating filled fields. Updated with what information |
| 6982 | /// the kernel returned. Callers must check this field since support varies |
| 6983 | /// by kernel version and filesystem. |
| 6986 | 6984 | mask: STATX, |
| 6987 | 6985 | /// Block size for filesystem I/O. |
| 6988 | 6986 | blksize: u32, |