开发者

StackWalk of other process in delphi?

开发者 https://www.devze.com 2023-01-17 12:13 出处:网络
Do you know h开发者_JS百科ow to read another process stack in delphi ??Yes. You can enumerate threads with Toolhelp functions; get the context with GetThreadContext(); and read the stack memory (i.e.

Do you know h开发者_JS百科ow to read another process stack in delphi ??


Yes.

You can enumerate threads with Toolhelp functions; get the context with GetThreadContext(); and read the stack memory (i.e. using ESP from the context) with ReadProcessMemory(). The stack grows downwards in memory, so reading memory locations after ESP is going down the stack.


You could take a look at the "TThreadSampler.MakeStackDump" procedure of the following unit of my sampling profiler: http://code.google.com/p/asmprofiler/source/browse/trunk/Sampling/mcThreadSampler.pas

This function can read from the same thread, or same process or different process (each with it's own optimized function).

Btw: my Sampling Profiler reads Delphi debug symbols (.map, .jdbg, etc) because there is still no good Delphi to Pdb debug symbol converter (so you can view the stack of a Delphi program in Windows debugger or Process Explorer, Visual Studio etc). You can also use my sampling profiler for view the current stack of any process! http://code.google.com/p/asmprofiler/wiki/AsmProfilerSamplingMode

0

精彩评论

暂无评论...
验证码 换一张
取 消