清理非托管 c++ C# 应用程序退出时的线程

发布于 2024-11-06 07:49:40 字数 234 浏览 0 评论 0原文

这是我的设置:
1) C# 应用程序启动并调用导出的非托管 C++ DLL 函数
2) dll函数通过win32 CreateThread产生一个线程
3)这个新线程在 while 循环中“工作”,检查退出标志

当我退出 C# 应用程序时,线程立即退出。

问题:
1) 我该怎么做才能让我的线程在退出前清理?

非常感谢 - 我是 C# 世界的新手,但对 C++ 有经验

Here's my setup:
1) c# application starts up and calls an exported unmanaged c++ dll function
2) the dll function spawns a thread via win32 CreateThread
3) this new thread does it's "work" in a while loop, checking for an exit flag

When I exit the c# application, the thread exits immediately.

Questions:
1) What can I do to allow my thread to cleanup before exiting?

Much thanks - I am new to the c# world, but experienced with c++

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

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

发布评论

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

评论(1

吹泡泡o 2024-11-13 07:49:40

当您的 C# 应用程序退出时:

  1. 设置一个对线程可见的标志。
  2. CreateThread 返回的 HANDLE 调用 WaitForSingleObject。这将使其等待线程退出。
  3. 您可以选择做一个好公民,并在线程的 HANDLE 上调用 CloseHandle 以释放其资源,尽管如果应用程序即将退出,这并不重要。
  4. 定期检查线程内的此标志,看看它是否应该退出循环。

When your C# app exits:

  1. Set a flag visible to the thread.
  2. Call WaitForSingleObject on the HANDLE returned by CreateThread. This will make it wait for the thread to exit.
  3. Optionally be a good citizen and call CloseHandle on the thread's HANDLE to free its resources, though this doesn't really matter if the app is about to exit.
  4. Periodically check this flag inside your thread to see if it should exit the loop.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文