Does anyone kn开发者_StackOverflow社区ow of a program that can be used to look at the callstack/memory being used by any given Windows thread?
Thanks.
One of the most commonly used tools for such things is WinDbg. You can freely download 32-bit version from here and 64-bit version from here. Using this tool you can attach to any Windows process from a command line WinDbg -p <Process_ID>
Here you can find a list of common WinDbg command including stack trace and different memory inspection commands. Here you can find a WinDbg tutorial.
Hope this will help.
精彩评论