有没有办法在 Mac OS X 中获取设备的 BSD 编号?

发布于 2024-08-09 04:24:47 字数 279 浏览 12 评论 0原文

我的程序从输入中读取 /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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无妨# 2024-08-16 04:24:47

是的。使用 stat 系统调用。您正在寻找的 struct stat 成员是 st_dev,我相信它是主要和次要移位后的或。

Yes. Use the stat syscall. The member of struct stat you are looking for is st_dev, which I believe is an OR of major and minor after a bit shift.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文