有哪些WinDbg命令可用于检索有关流程统计信息的信息,例如
来自.mdmp
类型的内存转储文件?
答案 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中的信息应该足以让您了解导致崩溃的违规电话。