将 IOKit IOReturn 错误代码映射到 String
当我收到错误 0x10 时,我希望能够理解该错误代码。查找IOReturn.h和mach/error.h并不是特别方便。当我收到 0x22 错误代码时我迷失了。这确实是一个愚蠢的问题,但是是否有像 error2String 这样的函数可以将 IOReturn 错误代码映射到描述错误的字符串?
When I get error 0x10, I want to be able to make sense of that error code. Looking up IOReturn.h and mach/error.h is not particularly convenient. I was lost when I got 0x22 error code. This is really silly question but is there a function like error2String which can map IOReturn error code to String that describes the error ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 mach_error_string 标准基础函数来执行此操作。
例如。在斯威夫特:
You can use the mach_error_string standard foundation function to do this.
Eg. in Swift:
在内核中运行的代码可以使用
IOService::stringFromReturn(...)
Code running in the kernel can use
IOService::stringFromReturn(...)