How to find symbol(s) at or near a given memory address ? (using Visual Studio 2010)

Viewed 3717

While debugging Windows application, I wanted to find out if it is possible to locate symbols at a given memory location (and how). This will be the reverse operation of typing a symbol in the "Memory" window, which will translate the symbol to its address. But not the other way around.

It is super easy on VxWorks shell, and possible with Linux gdb. Should be possible on VS.

Thanks.

2 Answers

When using windbg to debug, command "ln Address" will help you check the symbols near the target address, hope that will help you.

Related