Examining stack in specific thread

Hi, All

I’m debugging dump file on WinDbg.

After I run “!stacks 2 my_driver”, I can see all the threads and their
stacks belonging to my_driver.

Is there any way to see locals and code for specific thread?


Thank you,
Kozlov Daniel

Use .thread and specify the thread address of interest (.thread address).
Then you can bring up the call stack window (View->Call Stack) and the
locals window (View->Locals).

-scott


Scott Noone
Consulting Associate
OSR Open Systems Resources, Inc.
http://www.osronline.com

“danny kozlov” wrote in message news:xxxxx@windbg…
Hi, All

I’m debugging dump file on WinDbg.

After I run “!stacks 2 my_driver”, I can see all the threads and their
stacks belonging to my_driver.

Is there any way to see locals and code for specific thread?


Thank you,
Kozlov Daniel