Getting call stack of a remote process
-
Hi, I want to read the call stack of another process and save it to a file. I am able to atach to the process by using DebugActiveProcess but waht is the function which reads the info from the callstack and translates the symbol information :confused:
DavidR
-
Hi, I want to read the call stack of another process and save it to a file. I am able to atach to the process by using DebugActiveProcess but waht is the function which reads the info from the callstack and translates the symbol information :confused:
DavidR
StackWalk64()
It's not quite trivial though - you'll want to read up on the DbgHelp API[^]. Alternately, just callMiniDumpWriteDump()
[^], and use a debugger to examine the resulting dump.---- I just want you to be happy; That's my only little wish...