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

📄 proc_fs.h

📁 LINUX1.0内核源代码,学习LINUX编程的一定要看。
💻 H
字号:
#ifndef _LINUX_PROC_FS_H#define _LINUX_PROC_FS_H/* * The proc filesystem constants/structures */#define PROC_ROOT_INO 1#define PROC_SUPER_MAGIC 0x9fa0struct proc_dir_entry {	unsigned short low_ino;	unsigned short namelen;	char * name;};extern struct super_block *proc_read_super(struct super_block *,void *,int);extern void proc_put_inode(struct inode *);extern void proc_put_super(struct super_block *);extern void proc_statfs(struct super_block *, struct statfs *);extern void proc_read_inode(struct inode *);extern void proc_write_inode(struct inode *);extern int proc_match(int, const char *, struct proc_dir_entry *);extern struct inode_operations proc_root_inode_operations;extern struct inode_operations proc_base_inode_operations;extern struct inode_operations proc_net_inode_operations;extern struct inode_operations proc_mem_inode_operations;extern struct inode_operations proc_array_inode_operations;extern struct inode_operations proc_kmsg_inode_operations;extern struct inode_operations proc_link_inode_operations;extern struct inode_operations proc_fd_inode_operations;extern struct inode_operations proc_net_inode_operations;#endif

⌨️ 快捷键说明

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