|
发表于 2004-6-18 13:36:44
|
显示全部楼层
回复: 内核结构真好,不过有的语句看不懂
最初由 KMnO4 发表
在fs.h里
struct file_system_type {
const char *name;
int fs_flags;
struct super_block *(*read_super) (struct super_block *, void *, int);
struct module *owner;
struct file_system_type * next;
struct list_head fs_supers;
};
不知道那句
struct super_block *(*read_super) (struct super_block *, void *, int);
是什么意思.
C语言学的有点差....
read_super为一个函数指针,返回类型为一个指向super_block结构的指针. |
|