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

📄 kernel_stat.h

📁 Axis 221 camera embedded programing interface
💻 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 + -