How to list function definition in windbg like gdb?

In gdb, I can just list funcsee the definition func,

and the lines change every time. But in windbg I tried lsa func,

it sometimes works, but sometimes not. And even when it works, the line does not increase every time I press return.

How do you check the code with windbg (assuming debug symbols are loaded)?

0
source share
1 answer

http://msdn.microsoft.com/en-gb/library/ff552114.aspx

Make sure .lines is enabled. Then you can use l + s to display the source at each step with the debugger. Then you can go through the code and the source lines will be printed in step.

http://msdn.microsoft.com/en-us/library/ff552107(v=VS.85).aspx

, lsa func, , . , lsa .

0

All Articles