Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 WinDbg 监控内存泄漏?我正在寻找一种方法来使用 !htrace (!htrace enable --> !htrace -snapshot --> !htrace -diff) 来确定我们遇到的 MEM 泄漏。我目前可以获得持有资源的线程堆栈,但我无法获得足够深的堆栈跟踪(我希望在每个堆栈上看到更多帧。我只看到堆栈中对我来说不太感兴趣的部分)
默认情况下 20 是堆栈帧限制,您可以更改:
.kframes 0n100
这将限制设置为 100(0n表示数字是基于十进制的,否则它将假定您传递的是十六进制值)更多信息在这里。
0n