struct kobj_type

来源:互联网 发布:苹果手机蓝牙网络共享 编辑:程序博客网 时间:2024/06/05 16:06

include/linux/kobject.h

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);
};