Matas Vaitkevicius
Matas Vaitkevicius

Reputation: 61509

Minidump file summary accessing heap information

How do I access Heap Information from Minidump File Summary. I using Visual Studio 2013 and new to dump files, this file was produced by Windows Task Manager selecting the process and creating a dump file.

Screenshot below might explain better what I am trying to achieve. Img

Upvotes: 2

Views: 1775

Answers (1)

jschroedl
jschroedl

Reputation: 4986

You need to click the "Debug with Native Only" link on the right. After that, it'll fire up the debugger. You can look at local variables if it captured them. You can open the memory window to see heap info but probably need to know the general address range you're interested in.

Upvotes: 2

Related Questions