Is there a way to itereate through all frames in windbg? -
is there way iterate through frames in windbg? (or run dv each stack frame)
example: ~*e !mk -cc
iterate through threads , call !mk -cc
what want basically:
for each thread: switch thread:
~0s
for each frame in thread:
.frame 00 dv
just wondering if there way automate this?
able generate script do:
~0s .frame 00 dv .frame 01 dv .frame 02 ...
but multistep process, , want automate all.
you can use ~e command execute command per-thread. can use !for_each_frame execute command each call frame. example:
~*e .echo thread frames , locals:; !for_each_frame dv
the .echo command included mark 1 thread ends , next begins.
Comments
Post a Comment