IsGUIThread——它有什么作用?

发布于 2024-10-15 17:13:21 字数 89 浏览 5 评论 0原文

我一直无法弄清楚 IsGUIThread 到底做了什么......我什至查看了 ReactOS 源代码,但我无法弄清楚。

你有什么想法可以称之为吗?

I've been unable to figure out what IsGUIThread really does... I've even looked at the ReactOS source code, but I can't figure it out.

Any ideas why you might call it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

眼中杀气 2024-10-22 17:13:21

IsGUIThread 告诉您当前线程是否是 GUI 线程 - 即正在运行消息循环的线程。

它实际上做的是检查当前线程是否有 GUI 线程信息(请参阅 MSDN 中的 GetGUIThreadInfo。

我从未使用过此函数,但我猜想的一个可能用途是允许代码将慢速任务推迟到如果当前线程是 GUI 线程,则工作线程。

IsGUIThread tells you if the current thread is a GUI thread - that is a thread that is running a message loop.

What it actually does is check if the current thread has GUI thread info (see GetGUIThreadInfo in MSDN.

I have never used this function but one possible use I would guess is to allow code to defer slow tasks to a worker thread if the current thread is a GUI thread.

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