MFC WinApp 在不同线程中调用 InitInstance 和 OnAppExit/析构函数

发布于 2024-11-08 06:01:17 字数 212 浏览 1 评论 0原文

我在我们的一个客户环境中遇到了问题 - 当我在 OnAppExit (或析构函数)中 AfxGetApp()->WriteProfileString 时它不起作用。我无法在任何地方重现它。我发现 OnAppExit 是从与 InitInstance 不同的线程调用的 - 同样,这在我的任何机器上都不是这样。

这可能是问题吗?而且,为什么 OnAppExit 在不同的线程中被调用?谢谢。

I got problem at one of our customers environment - when I AfxGetApp()->WriteProfileString in OnAppExit (or destructor) it doesn't work. I cannot reproduce it anywhere. I tracked it down that the OnAppExit is called from different thread than InitInstance - again, this isn't true at any of my machines.

Can it be the issue? And, why does the OnAppExit gets called in different thread? Thanks.

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

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

发布评论

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

评论(1

征棹 2024-11-15 06:01:17

如果您的应用中有生成错误并调用 exit 的线程,则可能会在不同的线程上调用 OnAppExit。在正常使用情况下,OnAppExit 只能在主线程中调用。以下是 exit 的文档 - http://msdn。 microsoft.com/en-us/library/k9dcesdd.aspx

OnAppExit might get called on a different thread if you have threads in your app which generate an error and call exit. Under normal usage OnAppExit should only be called in your main thread. Here's the documentation for exit - http://msdn.microsoft.com/en-us/library/k9dcesdd.aspx.

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