0

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

runnydead
  • 618
  • 1
  • 7
  • 17

1 Answers1

1

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.

Remus Rusanu
  • 288,378
  • 40
  • 442
  • 569