如何从设备文件中获取主设备号
在solaris中是否有任何C系统调用可以从设备文件中获取主设备号和次设备号?
Is there any C system call for getting the major number and minor number from a device file in solaris?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 stat 系列函数之一。这些数字位于 st_rdev 字段中。使用 sys/mkdev.h 中定义的主要/次要函数来检索它们。
You can use one of the stat family functions. The numbers are in the st_rdev field. Use the major/minor functions defined in sys/mkdev.h to retrieve them.