vote up 2 vote down star
2

In my C++ application (developed with Visual Studio 2003) and Qt4, I'd like to print the stack trace from a specific line of code, either to the console output or into a file.

What would it take ? Is Qt of any help to do this ?

flag

3 Answers

vote up 3 vote down check

StackWalker by Jochen Kalmbach [MVP VC++] and available on codeproject is probably the easiest way to do this. It wraps up all of the details of dealing with the underlying StackWalk64 API.

link|flag
vote up 1 vote down

StackWalk64 in the dbghelp.dll library should do what you're looking for.

link|flag
vote up 0 vote down

It's not in the public Qt API, but if you look in

$QTDIR/src/corelib/kernel/qcrashhandler.*

you can see the beginnings of a cross-platform implementation of exactly this.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.