SOS is an extension DLL that allows debugging of managed .NET code using the debuggers from Debugging Tools for Windows, such as WinDbg.

learn more… | top users | synonyms

2
votes
1answer
93 views

WinDbg is asking for a particular version of mscordacwks.dll. Where can I find this?

I am trying to read the crash dump file for a .NET 2.0 assembly using WinDbg and SOS.dll. From reading around, I have understood that I have to copy sos.dll, mscorwks.dll and mscordacwks.dll into the ...
2
votes
1answer
168 views

Advanced .NET Debugging

I'm reading Advanced .NET Debugging book and I like it very much. However I have some problems with the examples. I would really appreciate if someone that has read it helped me. I have two ...
1
vote
1answer
57 views

How to closely recreate SOS.dll functionality in C# managed code? How does SOS.dll ObjSize and DumpObject work under the hood?

I have done a lot of research on this topic and am still stumped. I've previously asked this question to stackOverflow and recieved a less than satisfactory response. This leads me to believe that ...
3
votes
1answer
103 views

view datetime method parameter using sos

How do I view a datetime that is being passed in as a parameter? I found this example on the internet but I am having problems understanding it? I dont see where they use the output from clrstack at ...
1
vote
1answer
107 views

SOS.dll ObjSize and DumpObject under the hood intricacies. How to recreate SOS.dll in C#?

This question is largely based on my previous post found here. I'm attempting to recreate some of the functionality of the SOS.dll using reflection. Specifically the ObjSize and DumpObject commands. ...
3
votes
1answer
152 views

using sos to debug visual studio

I am trying to debug a visual studio 2010 addin using SOS. I attached windbg but there is no clr.dll. I tried .loadby sos mscoree, .loadby sos corjit, and none of them worked. I got kinda working by ...
4
votes
1answer
88 views

Reading instance fields when debugging JIT'ed assemblies

Over the last couple of weeks, I've been playing around with the unmanaged .NET debugging API. While MSDN documents the interfaces itself, to find out how to actually use them in any meaningful way, ...
3
votes
1answer
135 views

How to find custom attributes on an instance with WinDbg

Using windbg, is there a way to see all the custom attributes that are defined on an instance? (at class level) And if it is possible, can I see fields values in the custom attribute?
8
votes
2answers
178 views

Debugging Mixed mode (C# , C++) application

I am debugging an issue with a mixed mode (managed and unmanaged) application. The actual issue is within the unmanaged code. I have loaded SOS dll into Windebugger. But is shows me the call stack ...
0
votes
1answer
295 views

VS2010 loaded SOS.dll successfully but other commands can't be used on my 64bit OS

As you see,I use VS2010 Professional to load sos.dll ,but other commands can't be used and continues throw an Exception,like this: .load sos.dll extension ...
0
votes
0answers
52 views

Method table layout in clr 4.0

I have tow classes Class1 and Program a shown below: class Class1 { public void xx() { } } class Program : Class1 { static void Main(string[] args) { } } But ...
3
votes
2answers
528 views

Stepping through Source Code using Windbg SOS Extension

I have recently switched from native to managed code programming. I am using .NET. Since i have been using Windbg for quite some time , i want to use it for managed code debugging as well. My ...
2
votes
2answers
190 views

SOS extension for x64 debugging

Is there any posibility to load SOS extension in visual studio 2010/2012 (.Net framework 4) for x64 process?
2
votes
0answers
151 views

creating minidump of a 32bit process running in 64 bit OS

I have a .net app which is designed to run in a 32 bit environment and it runs in 64 bit OS in wow64 environment. Now i am creating an utility(32 bit) to create dump for the application. I use the ...
3
votes
3answers
269 views

Find address of static field in WinDbg w/ SOS

I'm having trouble figuring out how to get to the address of a static .NET class member using WinDBG w/ SOS. Given an input program like this: namespace windg_static_test { class StaticTest ...
3
votes
0answers
193 views

Mixed mode crash from workerthread pool, but no managed thread

It’s a large 32 bits mixed mode MFC 7.0 app on XP, the user tells that he was using a feature which is implemented in managed code. The crach is in a thread that has acquired the LoaderLock, and seems ...
2
votes
2answers
266 views

.NET memory leak - System.WeakReference objects accumulate

I have a service written in VB.NET which leaks memory. The memory grows even when it's not doing much. It starts out using about 29,000 K in the task manager, and after a number of hours, depending ...
5
votes
3answers
519 views

Determine line number of InnerException from minidump using WinDbg

I'm trying to track down a NullReferenceException from a dump. The NullReferenceException is not the crashing exception, rather the crashing exception is a TargetInvocationException with an ...
1
vote
1answer
79 views

Client Machine configuration from memory dump

How do I find the RAM size of a client machine using windbg from the memory dump of a process. I tried vertarget, !address-summary. But i am not able to find the RAM details in any of these commands. ...
1
vote
0answers
131 views

!dumpobj in windbg,what does Domain:Value dynamic statics NYI 002a8428:NotInit mean?

When i use windbg !do to view a address,it output: 0:000> !do 01ef30f4 Name: System.Collections.Generic.List`1[[System.Byte[], mscorlib]] MethodTable: 0021285c EEClass: 6313a530 Size: ...
3
votes
3answers
142 views

Windbg - How can I Dump Strings which match a given filter

One can dump all the string using the following command !dumpheap -type System.string How can dump or print only those string which starts or contains a specific "string" Example. I am only ...
0
votes
1answer
248 views

Tracking managed code(C#) flow using sos.dll in windbg

Pressing F9 in windbg sets breakpoints and once it gets hit the cursor gets red and then we can loop through the unmanaged code using F10 to see the flow of code. My query is how we can track managed ...
1
vote
1answer
225 views

Breakpoint not working for SOSEX using !mbp

I'm trying to debug a C# application using SOSEX in WinDbg for 32 bit environment in .NET Framework 4.0. I use sosex.dll for 32 bit v4.0. Here are the steps: sxe ld:mscorlib sxe ld:clrjit load Path ...
2
votes
1answer
594 views

How can I use SOS.dll within a C# program for automated debugging purposes?

In order to track down memory leaks, I have been using Visual Studio and SOS.dll to provide dumps of the object heap, and to see what is GCRooting a particular object in place. I started automating ...
2
votes
3answers
344 views

WinDbg, SOS, how to dump all strings on stack

How can I print the string value of all the System.String objects on the current thread's clrstack? Pseudo code for what I want to do: foreach ($string in !dso -type System.String) !do $string or ...
1
vote
1answer
87 views

Understanding Large Object Heap and stats output by DumpHeap

Say I have following class: Class A { B b; C c; D d; } First, I allocate: var b1 = new B(); var c1 = new C(); var d1 = new D(); each of b1, c1, d1 is less than 85K, so they get allocated on ...
1
vote
1answer
104 views

Is there a way to find fully qualified method names in WinDbg?

When I want to set a break point using !bpmd, I need the fully qualified method name. According to the MDSN document ( http://msdn.microsoft.com/en-us/library/bb190764.aspx), I can find type names ...
3
votes
2answers
185 views

Object Size in SOS Debugging C#.Net

class Book { public int ISBN { get; set; } } void Method() { Book book = new Book(); // Break and verify in SoS Debugging. } !dumpheap -type Book PDB symbol for clr.dll not ...
3
votes
1answer
239 views

Can I set a breakpoint at a source code of managed application when I use WinDbg?

I tried to set a breakpoint using WinDbg at a source code of a c# application, but it didn’t work. Is there a way to set a breakpoint at a source code of managed application when I use WinDbg? Repro ...
2
votes
2answers
105 views

Installed path of a process in windbg

How do I find the installed path of an application from windbg? Consider, I got a dump . I need to know the installed path of that application from the dump using windbg.
6
votes
1answer
537 views

Cannot switch to managed thread in WinDbg

I am exploring a minidump of an ASP.NET process with WinDbg, using SOS. If I list the managed threads I see a normal looking list of threads: 0:000> !threads ThreadCount: 8 UnstartedThread: 0 ...
1
vote
2answers
215 views

using psscor from Visual studio

I have used sos from within Visual Studio. Is it possible to run psscor from Visual Studio ? Does it need any special configurations?
4
votes
1answer
359 views

Please explain !SyncBlk the windbg command

Firstly, is there a command for getting help and parameters for each sos command in windbg? Secondly, I'd like to understand !syncblk output Index SyncBlock MonitorHeld Recursion Owning Thread Info ...
4
votes
3answers
237 views

Interpret UInt64 dateData in .NET DateTime structure?

In looking at a DateTime struct in the debugger via SOS.dll, I see... 0:096> !DumpVC 000007feed1ddff8 000000028036d890 Name: System.DateTime MethodTable: 000007feed1ddff8 EEClass: ...
2
votes
1answer
70 views

Efficient way to get name/MT of ValueTypes not listed in !dumpheap -stat

I'm working my way around the SOS commands and their output, but I noticed there doesn't seem to be a way to get really all types that are currently in use somehow. The best way so far is !dumpheap ...
0
votes
0answers
28 views

Scripting SOS extension in Visual Studio

I want to script a sequence of commands to SOS when loaded in the immediate window of Visual Studio. Is this possible? Are there examples? If so, where?
0
votes
1answer
138 views

Windbg Cant get values of locals

Iam using Windbg to debug my .net application and loading SOS.dll. After set breakpoint and hit it using command "P" to step into code. Every time a use command "P" I use also Command "!CLRStack -a" ...
5
votes
1answer
186 views

F# Debugging. CLR

I want to have a bit more of a look at the resulting ASM (F#->IL->ASM) that is generated for certain functions, purely out of curiosity & learning. Answer in my mind is to use SOS.dll, but I have ...
2
votes
2answers
586 views

!clrstack -p not giving the values of the parameters for the methods in the call stack

We are trying to analyze a w3wp memory dump using windbg and we found that w3wp process is crashing due to stack overflow. I loaded the psscor4.dll and got the call stack by issuing !clrstack. But I ...
0
votes
1answer
205 views

SOS debugger in VS 2010 for Silverlight 4, enable unmanaged debugging

if I issue .load SOS while debugging in VS 2010 I get "SOS not available while Managed only debugging. To load SOS, enable unmanaged debugging in your project properties." I accept that I need to ...
1
vote
2answers
338 views

Using Logger.exe in windbg to print method calls

I need windbg to print the method calls using Logger.exe. After analyzing Logexts.dll , i learnt that !logexts.logm i sampleapplication.dll will print the calls made in sampleapplication.dll on to ...
2
votes
1answer
340 views

Is there an easy way to look at key-value pairs in a Dictionary using sos?

I'm using SOS.dll via WinDBG looking at a crash dump. Given the address of a Dictionary object, is there an easy way to dump it's contents like.. Key1 -> Value1 Key2 -> Value2 ... KeyN -> ...
1
vote
1answer
299 views

Dumping array using Windbg

In C#,I have an object say Shape which has two fields area and length. I got a shapeList which is a collection of Shapes. I have got a shapeList address in my crash dump. I need a script in windbg ...
2
votes
2answers
597 views

Livekd documentation and tutorials

I know LiveKd is a tool to create dumps for analysis. Can someone help me with some links that help me learn how to use LiveKd?
1
vote
2answers
871 views

Process information in dump

I learnt that .tlist command in windbg dumps all the processes running in the system at the time of creating crash dump. I would like to see the Memory Information of each process. So that it will ...
2
votes
2answers
281 views

Difference between crash dump and hang dump?

What is the difference between crash-dump and hang-dump? Suppose if i write a utility to create a dump of a process on clicking it, how will i intimate the utility to create an appropriate dump?
2
votes
1answer
244 views

in windbg how to save byte array to the file

before i had see this question and answer: Use WinDbg to Write Contents of Managed Byte[] to File,but i have a question that the mention answer that write all bytes to the file( Method table ...
0
votes
2answers
293 views

fbDidLogin or fbDidNotLogin not called

I am trying to integrate facebook login in my existing app. I have the openURL and handleOpenURL methods in AppDelegate.m, but i initialize facebook object in one of the view Controller on click of a ...
0
votes
2answers
198 views

What is “.load” in .load sos?

In Visual Studio I use .load sos in the Immediate Window to load sos.dll. What is this '.load'? Is there some description for it? In the Immediate Window I Can: Evaluate an expression (? varA), ...
0
votes
1answer
113 views

How can i find out the respective values of 'object' and 'method' ,they are arguments of the constructor System.MulticastDelegate?

I decompiled the delegate using .Net Reflector.i find it inherit from System.MulticastDelegate .And the constructor of System.MulticastDelegate has two arguments that are 'object' and 'method'.But ...

1 2 3 4