runnydead
runnydead

Reputation: 628

Extracting stack trace from minidump

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

Answers (1)

Remus Rusanu
Remus Rusanu

Reputation: 294497

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.

Upvotes: 1

Related Questions