struct kobject

来源:互联网 发布:基于单片机汽车 编辑:程序博客网 时间:2024/06/16 10:22

include/linux/kobject.h

struct kobject {

    const char        *name;
    struct list_head    entry;
    struct kobject        *parent;
    struct kset        *kset;
    struct kobj_type    *ktype;
    struct sysfs_dirent    *sd;
    struct kref        kref;
    unsigned int state_initialized:1;
    unsigned int state_in_sysfs:1;
    unsigned int state_add_uevent_sent:1;
    unsigned int state_remove_uevent_sent:1;
    unsigned int uevent_suppress:1;
};
原创粉丝点击