Reputation: 628
I'm trying to figure out how can I read a stack trace of the faulting thread from minidump file on windows. Is there an easy solution? I can't find one.
Sorry, I forgot to mention, that I need to do it programmaticaly.
Should I use DbgEng to do it?
Thx
Upvotes: 0
Views: 986
Reputation: 294497
Programmaticaly: IDebugControl::GetStackTrace, or StackWalk64 for live process.
Another alternative is to embark on the Breakpad wagon, but that changes the entire process, including the generation of dumps.
Upvotes: 1