How to list function source in windbg when loading debug symbols?

I came from gdb where I can symbolically list the source with l func, and then press enter to learn more about the definition.

How to do it in windbg?

+3
source share
2 answers

If you want to parse func type u func, if you want to open source type.open -a func

If you want to specify the source in the command window or in cdb, use lsa func

you can replace func address.

+3
source

Just select File-> Open Source File ..

enter image description here

0
source

All Articles