⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 kobject.h

📁 linux得一些常用命令,以及linux环境下的c编程
💻 H
字号:
/* * kobject.h - generic kernel object infrastructure. * */#ifndef _KOBJECT_H_#define _KOBJECT_H_#include <linux/types.h>#include <linux/list.h>#include <linux/sysfs.h>#include <linux/rwsem.h>#include <asm/atomic.h>#define KOBJ_NAME_LEN	16struct kobject {	char			name[KOBJ_NAME_LEN];	atomic_t		refcount;	struct list_head	entry;	struct kobject		* parent;	struct subsystem	* subsys;	struct dentry		* dentry;};extern void kobject_init(struct kobject *);extern void kobject_cleanup(struct kobject *);extern int kobject_add(struct kobject *);extern void kobject_del(struct kobject *);extern int kobject_register(struct kobject *);extern void kobject_unregister(struct kobject *);extern struct kobject * kobject_get(struct kobject *);extern void kobject_put(struct kobject *);struct subsystem {	struct kobject		kobj;	struct list_head	list;	struct rw_semaphore	rwsem;	struct subsystem	* parent;	void (*release)(struct kobject *);	struct sysfs_ops	* sysfs_ops;	struct attribute	** default_attrs;};extern void subsystem_init(struct subsystem *);extern int subsystem_register(struct subsystem *);extern void subsystem_unregister(struct subsystem *);static inline struct subsystem * subsys_get(struct subsystem * s){	return container_of(kobject_get(&s->kobj),struct subsystem,kobj);}static inline void subsys_put(struct subsystem * s){	kobject_put(&s->kobj);}#endif /* _KOBJECT_H_ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -