将 IOKit IOReturn 错误代码映射到 String

发布于 2024-09-26 18:23:23 字数 153 浏览 7 评论 0原文

当我收到错误 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 技术交流群。

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

发布评论

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

评论(2

桃扇骨 2024-10-03 18:23:23

您可以使用 mach_error_string 标准基础函数来执行此操作。

例如。在斯威夫特:

func krToString (_ kr: kern_return_t) -> String {
    if let cStr = mach_error_string(kr) {
        return String (cString: cStr)
    } else {
        return "Unknown kernel error \(kr)"
    }
}

You can use the mach_error_string standard foundation function to do this.

Eg. in Swift:

func krToString (_ kr: kern_return_t) -> String {
    if let cStr = mach_error_string(kr) {
        return String (cString: cStr)
    } else {
        return "Unknown kernel error \(kr)"
    }
}
骄兵必败 2024-10-03 18:23:23

在内核中运行的代码可以使用IOService::stringFromReturn(...)

Code running in the kernel can use IOService::stringFromReturn(...)

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