Linux Kernel设备驱动模型之struct kobj_type

来源:互联网 发布:2016世界各国经济数据 编辑:程序博客网 时间:2024/06/06 04:50
设备类型结构: 
struct kobj_type { void (*release)(struct kobject *kobj); const struct sysfs_ops *sysfs_ops; struct attribute **default_attrs; const struct kobj_ns_type_operations *(*child_ns_type)(struct kobject *kobj); const void *(*namespace)(struct kobject *kobj);};
 
 
0 0