¡@

Home 

c# Programming Glossary: sos

Attempted to read or write protected memory. This is often an indication that other memory is corrupt

http://stackoverflow.com/questions/4074585/attempted-to-read-or-write-protected-memory-this-is-often-an-indication-that-ot

Finally tracked this down with the help of WinDBG and SOS. Access violation was being thrown by some unknown DLL. Turns..

High Frequency Heap

http://stackoverflow.com/questions/4405627/high-frequency-heap

method table of types. This can be verified using WinDbg SOS as shown below. It is also stated in the SSCLI book p. 235 ...

How do I obtain a crash dump

http://stackoverflow.com/questions/4992569/how-do-i-obtain-a-crash-dump

not an option you can always use VS2008 or WinDbg with the SOS extensions. I do highly recommend Visual Studio 2010 though.. I do highly recommend Visual Studio 2010 though as SOS extensions and WinDbg in general have a pretty steep learning.. have a pretty steep learning curve. To learn more about SOS check out these MSDN articles here and here . Another reason..

A curious case of Visual Studio 2010 debugger(it can not hit a break point)

http://stackoverflow.com/questions/5744506/a-curious-case-of-visual-studio-2010-debuggerit-can-not-hit-a-break-point

process here Debugging IL You can try to use WinDbg and SOS extension for it to examine JIT ed version of the method. You.. from there Setting a breakpoint in WinDbg for Managed Code SOS Cheat Sheet .NET 2.0 3.0 3.5 . You can also try to report an..

How do I fix a .Net windows app crashing at startup with Exception code: 0xe0434352?

http://stackoverflow.com/questions/6244939/how-do-i-fix-a-net-windows-app-crashing-at-startup-with-exception-code-0xe0434

help you then you might need to check out WinDbg with SOS. See here and here for an intro. Let it break on the exception..

Large Object Heap Fragmentation

http://stackoverflow.com/questions/686950/large-object-heap-fragmentation

is suffering from a slow memory leak. I have used CDB with SOS to try to determine what is happening but the data does not.. if this is related or not. If I dump the marked object CDB SOS reports it fine 0 015 DumpObj 000000005e62fd38 Name System.Object.. that are created in the LOH. This is more evident in CDB SOS 0 000 .loadby sos mscorwks 0 000 EEHeap gc Number of GC Heaps..

Retrieve JIT output

http://stackoverflow.com/questions/6928442/retrieve-jit-output

share improve this question You should use WinDbg with SOS SOSEX ensure that method you want to see x86 code for is JITted.. improve this question You should use WinDbg with SOS SOSEX ensure that method you want to see x86 code for is JITted..

Track all object references in C#

http://stackoverflow.com/questions/707421/track-all-object-references-in-c-sharp

studio object reference share improve this question SOS can do this for you. It isn't integrated into the debugger but.. it to your running process. You may find it helpful to use SOSAssist rather than learning the console syntax. IIRC dumpheap..