Question

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

Was it helpful?

Solution

k

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top