无法检测 .NET 中的非托管内存分配
我想确定我的应用程序巨大内存消耗的来源。我的应用程序占用了大量虚拟内存(任务管理器中的 VM 列或 VMMap 中的私有字节)
我的应用程序是 .net 服务,但它使用 C# 包装器来封装 C++ 对象。
我尝试了 Red Gate Ants 内存分析器,但它仅计算托管对象,而不计算非托管 C++ new 运算符(只是调用 Virtual Alloc)分配的内存。
托管内存分析器的另一个问题是不允许跟踪调用图 - 请参见下图。
I want to determine the source of huge memory consumption of my app. My application is eating a lot of virtual memory (VM column in task manager or private bytes in VMMap)
My application is .net service but it uses C# wrappers around C++ objects.
I tried Red Gate Ants Memory profiler but it counts only managed objects and does not count memory allocated by unmanaged C++ new operator (which is simply calling Virtual Alloc).
Another problem with managed memory profiler is that does not allow to trace call graph - see picture below.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用DebugDiag。它将跟踪 C# 和 C++ 对象。
You can use DebugDiag. It will track C# and C++ objects.