Hi,
I'm trying to continuous step debugging using pykd using infinite while loop and in each step when the debugger breaks, do some operation.
1-> Do some operation (mainly collect info)
2-> Go one step/instruction forward (Actually Step Over [F10])
3-> Repeat same operation done in step 1 (collect info)
and so on
Thanks,
I'm trying to continuous step debugging using pykd using infinite while loop and in each step when the debugger breaks, do some operation.
1-> Do some operation (mainly collect info)
2-> Go one step/instruction forward (Actually Step Over [F10])
3-> Repeat same operation done in step 1 (collect info)
and so on
from pykd import *
while 1:
#Do stuff
#Do Stuff
step()
But always my debugger is getting hanged and sometimes its crashing, Is there any other way to do this ??Thanks,