c# - Generating dump file with symbols for a .NET process -
i trying analyze threads , memory usage of .net process (w3wp.exe). that, generating .dump task manager, right click on process , creating .dmp file. doing on 64 bit machine , on 64 bit process.
when try debug threads , memory utilization on process using .dmp file visual studio 2013, not see threads , memory data.
how verify symbols loaded correctly default , available see threads , memory objects? need manually load symbols specific dlls?
please bit careful terms. don't need symbols see threads. symbols needed resolve call stack , variables. seeing call stack need.
in vs2013:
- go debug/options , settings...
- go debugging/symbols
- [x] microsoft symbol servers
for own symbols, click "new" button in same dialog , add local directory.
it not possible create dump including symbols. symbols independently dump, e.g. via http (like microsoft symbols) or local directory (created @ compile time).
visual studio either load symbols, if match dump, or not load symbols @ all, there's no need check whether loaded correctly. if see call stack, should ok.
Comments
Post a Comment