Tagged Questions

5
votes
2answers
617 views

Is DbgHelp.dll built-in to Windows? Can I rely on it being there?

I use Jochen Kalmbach's StackWalker class from CodeProject, to produce a stacktrace when an exception occurs in my DLL. It relies on DbgHelp.dll Is DbgHelp.dll built-in to Windows Vista, WS2008, ...
4
votes
2answers
92 views

Creating a minidump in a Python application (Windows)

I'm working on a Python application. Sometimes the interpreter crashes when in a third party C++ DLL. I'm thinking about writing a Python extension that installs a handler for unhandled structured ...
0
votes
0answers
137 views

Getting parameter values via CaptureStackBackTrace - what's my frame pointer?

I'm still a novice on coding for stack traces, but I think I've got a pretty long way now. I'm using CaptureStackBackTrace to get an array of instruction offsets. These have in turn been fed to ...
0
votes
1answer
189 views

print callstack of a thread (c++), StackWalker or not?

Needing to print callstacks of C++ application thread by thread handle, I turned to StackWalker which is mentioned in previous stackoverflow answers. However, the StakWalker code is dated 2005. I ...
0
votes
1answer
605 views

Why does StackWalk64 return always true?

I tried to make my program dump and save its stack trace when crashes. I installed my own win32 SE handler with _set_se_translator and tried to dump the stack trace with StackWalk64 and finally throw ...