用于检索进程统计信息(如)的WinDbg命令有哪些
- 手柄的数量
- 线程数
- 内存消耗
- CPU消耗
- 等等
从类型为.mdmp
的内存转储文件?
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中的信息应该足够好,可以让您了解导致崩溃的违规呼叫。