⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 kernel_stat.h

📁 它通过提供glibc兼容使得应用程序移植到较小的c 库时相当得容易. 它能够应用到带虚拟存储的Linux和uClinux上.在大多数带MMU部件的平台上为使它更加紧凑,它也能够编译成共享库.uClib
💻 H
字号:
#ifndef _BITS_STAT_STRUCT_H#define _BITS_STAT_STRUCT_H/* This file provides whatever this particular arch's kernel thinks  * struct kernel_stat should look like...  It turns out each arch has a  * different opinion on the subject... */struct kernel_stat {	unsigned int	st_dev;	unsigned int	st_ino;	unsigned int	st_mode;	unsigned int	st_nlink;	unsigned int	st_uid;	unsigned int	st_gid;	unsigned int	st_rdev;	long		st_size;	unsigned long	st_atime;	unsigned long	st_mtime;	unsigned long	st_ctime;	unsigned int	st_blksize;	int		st_blocks;	unsigned int	st_flags;	unsigned int	st_gen;};struct kernel_stat64 {	unsigned int	st_dev;	unsigned int	st_ino;	unsigned int	st_mode;	unsigned int	st_nlink;	unsigned int	st_uid;	unsigned int	st_gid;	unsigned int	st_rdev;	long		st_size;	unsigned long	st_atime;	unsigned long	st_mtime;	unsigned long	st_ctime;	unsigned int	st_blksize;	int		st_blocks;	unsigned int	st_flags;	unsigned int	st_gen;};#endif	/*  _BITS_STAT_STRUCT_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -