📄 archstat.h
字号:
#ifndef _KLIBC_ARCHSTAT_H#define _KLIBC_ARCHSTAT_H#define _STATBUF_ST_NSEC/* * This matches struct stat64 in glibc2.1, hence the absolutely insane * amounts of padding around dev_t's. The memory layout is the same as of * struct stat of the 64-bit kernel, which makes this one of the sanest * 32-bit struct stats. */struct stat { unsigned int st_dev; unsigned long st_pad0[3]; /* Reserved for st_dev expansion */ unsigned long long st_ino; mode_t st_mode; nlink_t st_nlink; uid_t st_uid; gid_t st_gid; unsigned int st_rdev; unsigned long st_pad1[3]; /* Reserved for st_rdev expansion */ long long st_size; struct timespec st_atim; struct timespec st_mtim; struct timespec st_ctim; unsigned long st_blksize; unsigned long st_pad2; long long st_blocks;};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -