Tagged Questions

3
votes
2answers
333 views

Why are my local dlls taking forever to load after setting _NT_SYMBOL_PATH?

I've setup _NT_SYMBOL_PATH and have pointed it to srv*c:\symbols*http://msdl.microsoft.com/download/symbols When starting the debugger, I notice that the Windows related dlls load quickly. ...
2
votes
1answer
128 views

Where can I create free symbol server for open source project?

My open source project it is C++ dynamic linking library. Most of bugs - crash. I want create public symbol server to simplify debugging with memory dump. See also: Setting up a Symbol Server
2
votes
2answers
565 views

WinDbg, display Symbol Server paths of loaded modules (even if the symbols did not load)?

Is there a way from WinDbg, without using the DbgEng API, to display the symbol server paths (i.e. PdbSig70 and PdbAge) for all loaded modules? I know that lml does this for the modules whose ...
1
vote
0answers
41 views

View source code from a “Symbols Server” without debugging?

I know it's possible to publish our source/symbols to a symbol server, or use something like SymbolSource.org to allow us to step into the code when we are referencing a DLL. But I have found no way ...
1
vote
1answer
195 views

How to manage systemwide libraries when viewing a dump in VS or WinDBG?

When I load a Windows process dump file from a different machine with Visual Studio (or WinDBG), it'll display lot's of messages like: (output from Visual Studio 2005) ...
1
vote
4answers
577 views

How can i debug this line of code in Visual Studio?

i have the following line of code in VS2008. VirtualPathData virtualPathData = RouteTable.Routes.GetVirtualPath(_viewContext.RequestContext, "Home", ...