从mdmp文件中检索进程统计信息

时间:2015-11-25 02:44:09

标签: windows winapi mfc windbg memory-dump

有哪些WinDbg命令可用于检索有关流程统计信息的信息,例如

  • 句柄数量,
  • 线程数,
  • 内存消耗,
  • CPU消耗,
  • 等。

来自.mdmp类型的内存转储文件?

1 个答案:

答案 0 :(得分:1)

load the dump in windbg.
1.) ~* - gives all the threads in loaded process and their stacks.
2.) !runaway - gives execution time for individual threads
3.) !handle - lists all the handles of the application

如果是完整内存转储,您可以使用以下方法获取内存和堆信息:

1.) !address <>
2.) !heap

获得地址后,您需要转储单个地址/块以查看内存信息。

内存消耗和CPU消耗计数器不属于小型转储。 #1中的信息应该足以让您了解导致崩溃的违规电话。