中国Linux公社论坛's Archiver
论坛
›
内核源代码阅读交流
› 关于设备驱动三中的一段代码
shellray
发表于 2006-11-18 10:18:28
关于设备驱动三中的一段代码
scull设备驱动中有一段:
static struct seq_operations scull_seq_ops={
.start=scull_seq_start,
.next=scull_seq_next,
.stop=scull_seq_stop,
.show=scull_seq_show
};
为什么start 前面有个点号 ,而且变量定义完是逗号而不是分号
页:
[1]
查看完整版本:
关于设备驱动三中的一段代码