I would like to know if there is any API available which would create the full crash dump.
Currently, i'm using the MiniDumpWriteDump() API with MiniDumpWithFullMemory. But, I am not getting much information to analyze from the dump created.
I would like to know if there is any API available which would create the full crash dump.
Currently, i'm using the MiniDumpWriteDump() API with MiniDumpWithFullMemory. But, I am not getting much information to analyze from the dump created.
Copyright © 2021 Jogjafile Inc.
You said that you need a call stack and memory information -- both useful things for debugging =)!
The Call Stack
It's helpful to know how the call stack gets created from your crash dump file. This is a quote from MSDN on how a call stack gets generated, I took out the points I found most relevant here, but it's worth the full read link:
I would still look into Windows Error Reporting, which you're actually already using (the API) -- specifically setting up Local Crash Dumps. You can turn them on with a registry key and then enable "Full Dumps" by setting the DumpType=2. If you need to generate a crash dump file from code I would try the optimizations on this MSDN article about crash dump analysis.
See Collecting User-Mode Dumps for more information about setting up local crash dumps with a registry setting -- or try the optimizations in the crash dump analysis file -- and make sure you have your PDBs =).
Happy debugging.