有没有办法在 Mac OS X 中获取设备的 BSD 编号?
我的程序从输入中读取 /dev/rdisk0
等设备路径,然后在 IOKit
中查找 BSD 名称为 disk0
的磁盘。为此,我必须从路径中删除 /dev/r
。
对该路径进行硬编码可能会在 Mac OS X 的未来版本中中断。因此我想到了另一种方法:我可以使用设备的 BSD 主要版本和次要版本来匹配 IOService
。
我的问题是:是否可以从路径中提取 BSD 小号和主号?
My program reads device paths like /dev/rdisk0
from input and then it looks in IOKit
for a disk with the BSD name disk0
. For this I have to remove /dev/r
from the path.
Hard coding this path can break in future versions of Mac OS X. Therefore I though of another way: I could match the IOService
using the BSD Major and Minor version of the device.
Here's my question: Is it possible to extract the BSD minor and major numbers from a path?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。使用
stat
系统调用。您正在寻找的struct stat
成员是st_dev
,我相信它是主要和次要移位后的或。Yes. Use the
stat
syscall. The member ofstruct stat
you are looking for isst_dev
, which I believe is an OR of major and minor after a bit shift.