Win7 WOW64中应用程序中的奇怪线程

发布于 2024-08-25 22:40:35 字数 449 浏览 7 评论 0原文

中观察到 4-6 线程,该应用程序具有 3 线程,并且在 Windows 7 之前的任何 Windows(32 或 64 位)上表现正常。

我们在 Windows 7 x64 上的应用程序 资源管理器显示以下“未知”线程:

ntdll.dll!EtwDeliverDataBlock+offset

在随机间隔后出现以下线程:

ntdll.dll!TpCallbackIndependent+offset
ntdll.dll!TpCallbackIndependent+offset

在该应用程序无法创建线程之后(错误代码 8,空间足够热...)。

在我看来,某些系统 DLL 创建了 ETW 线程或其他东西。有谁知道这些线程的用途以及如何管理它们?

We are observing 4-6 threads on Windows 7 x64 in the application which have 3 threads and behaves normally on any Windows (either 32 or 64 bit) prior Windows 7.

Process Explorer shows the following "unknown" thread:

ntdll.dll!EtwDeliverDataBlock+offset

after random interval the following threads appear:

ntdll.dll!TpCallbackIndependent+offset
ntdll.dll!TpCallbackIndependent+offset

after that application can't create thread (error code 8, hot enough space ...).

It seems to me that some system DLL creates ETW threads or something. Does anyone know what these threads for and how to manage them?

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

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

发布评论

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

评论(1

青瓷清茶倾城歌 2024-09-01 22:40:35

TP 线程是 Windows 线程池 API 的一部分,并且是因为您的应用程序(或应用程序使用的 DLL)使用了 Windows 线程池 API 而创建的。您的应用程序(或您的应用程序使用的 DLL 之一)似乎正在使用 ETW API,该 API 也使用几个线程。你确实没有能力管理这些线程。

我严重怀疑这些线程是导致内存不足错误的原因。问题更有可能是进程中没有足够的连续内存来为新线程的堆栈保留空间。

The TP threads are a part of the Windows threadpool API and are created because your application (or a DLL used by your application) has used the Windows threadpool API. It also appears that your application (or one of the DLLs used by your application) is using the ETW APIs which also use a couple of threads. You really don't have the ability to manage these threads.

I seriously doubt that those threads are what is causing the out of memory error. It is more likely that the problem is that there isn't enough contiguous memory available in your process to reserve the room for the new thread's stack.

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