Re: getting a stack trace from a c++ exception
From: Jochen Kalmbach (nospam-Jochen.Kalmbach_at_holzma.de)
Date: 11/09/04
- Next message: Michael Böhnisch: "RE: getting a stack trace from a c++ exception"
- Previous message: Pradeep Kumar: "RE: Popup Window Activation"
- In reply to: Chuck Bohling: "getting a stack trace from a c++ exception"
- Next in thread: Oleg Starodumov: "Re: getting a stack trace from a c++ exception"
- Reply: Oleg Starodumov: "Re: getting a stack trace from a c++ exception"
- Messages sorted by: [ date ] [ thread ]
Date: Tue, 09 Nov 2004 04:48:17 -0800
Hi Chuck Bohling,
> Anyone know how to get a stack trace from a C++ exception? I'm using
> unmanaged C++.
If you have Debug-Symbols you can use
See: StackWalk64
http://msdn.microsoft.com/library/en-us/debug/base/stackwalk64.asp
Otherwise I would recomment to write an minidump and do look at the
callstack at your development machine.
Write the minidump by your own:
See; WriteDumpMiniDump
http://msdn.com/library/en-us/debug/base/minidumpwritedump.asp
or let "Dr. Watson" write the minidump
Call: "drwtsn32.exe -i"
See also my tool for writing minidumps/callstacks:
http://blog.kalmbachnet.de/?postid=13
-- Greetings Jochen My blog about Win32 and .NET http://blog.kalmbachnet.de/
- Next message: Michael Böhnisch: "RE: getting a stack trace from a c++ exception"
- Previous message: Pradeep Kumar: "RE: Popup Window Activation"
- In reply to: Chuck Bohling: "getting a stack trace from a c++ exception"
- Next in thread: Oleg Starodumov: "Re: getting a stack trace from a c++ exception"
- Reply: Oleg Starodumov: "Re: getting a stack trace from a c++ exception"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|