Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能给我一些关于和之间的区别的struct cdev解释struct device?
struct cdev
struct device
在最低级别, Linux 系统中的每个设备都由struct device. 设备结构包含设备模型核心对系统建模所需的信息。但是,大多数子系统会跟踪有关它们所托管设备的附加信息。因此,设备很少用裸设备结构来表示;相反,该结构,如 kobject 结构,通常嵌入在设备的更高级别表示中。 更多的
struct cdev但是,它是内核用来在内部表示字符设备的结构。 更多的