“WaitReason”的目的是什么? KeWaitForSingleObject() 上的参数?
MSDN 文档 没有解释此处的各种选项会发生什么情况(尽管对“WaitMode”参数非常清楚)。为什么我会选择“Executive”而不是“UserRequest”或 KWAIT_REASON 中的无数其他选项?
The MSDN docs don't explain what happens for the various options here (despite being quite clear about the 'WaitMode' paramter). Why would I pick 'Executive' over 'UserRequest' or the myriad other options in KWAIT_REASON?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的理解是,该值被设置到调用线程的 _KTHREAD::WaitReason 字段中,并且它严格用于诊断目的。
_KTHREAD::WaitReason 由各种 Windows 诊断服务使用和显示。
My understanding is that this value is set into the invoking thread's _KTHREAD::WaitReason field, and that it there strictly for diagnostic purposes.
_KTHREAD::WaitReasonis consumed and displayed by various Windows diagnostic services.