Tagged Questions

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

27
votes
1answer
5k views

Unable to load SOS in WinDbg

Background: I'm new to WinDbg and trying to get it running for the first time. I want to examine a memory dump I took from a running ASP.NET 4 site hosted in IIS 7 on Windows Server 2008 (x86) and ...
11
votes
4answers
2k views

Can I run a .NET garbage collection from WinDbg?

I'm looking into why a managed process is using a lot of memory. Is there a way to run GC.Collect(3) from WinDbg, so that I can focus on the actual memory allocation?
8
votes
4answers
479 views

Understanding CLR object size between 32 bit vs 64 bit

I am trying to understand the object size difference between 32 bit and 64 bit processors. Let’s say I have a simple class class MyClass { int x; int y; } So on a 32 bit ...
8
votes
2answers
371 views

How does the Garbage Collector decide when to kill objects held by WeakReferences?

I have an object, which I believe is held only by a WeakReference. I've traced its reference holders using SOS and SOSEX, and both confirm that this is the case (I'm not an SOS expert, so I could be ...
6
votes
2answers
865 views

WinDbg and SoS, how do I print/dump a large string?

I am debugging a hangdump coming from a production server using WinDbg with the SoS extension. There is a string parameter in one of the stacks, that I need to know the value of. However, it is a ...
6
votes
1answer
559 views

Use WinDbg to Write Contents of Managed Byte[] to File

I have a crash dump from a production server that shows an OutOfMemoryException. The exception itself is not relevant here. I happened to run a !dso to view the stack objects: 0:042> !dso OS ...
6
votes
3answers
467 views

How to break WinDbg in an anonymous method?

Title kinda says it all. The usual SOS command !bpmd doesn't do a lot of good without a name. Some ideas I had: dump every method, then use !bpmd -md when you find the corresponding MethodDesc ...
6
votes
5answers
816 views

live debugging a stack overflow

I have a managed code Windows Service application that is crashing occasionally in production due to a managed StackOverFlowException. I know this because I've run adplus in crash mode and analyzed ...
5
votes
1answer
579 views

How can I get complete stack traces for mixed-mode minidumps when (WPF) native images are involved?

I have a mixed-mode C++/CLI application which uses WPF. Crashes from our customers are reported as minidumps to our own server. When I try to investigate a minidump using the !pe or !clrstack ...
4
votes
2answers
120 views

Post-mortem .NET debugging with SOS.dll

I am working on a mixed-mode app (C++/CLI, C++, some C#) and when it crashes in the field a memory dump gets created. I usually get these dumps from the customer and try to figure out what went wrong. ...
4
votes
4answers
938 views

SOS commands fail while live debugging a process which has multiple versions of CLR loaded

I have a ASP.net 2.0 application that I am trying to debug live using Windbg and SOS.dll. When I attach the debugger to the process, I see it loads both 2.0 and 4.0 versions of CLR.[ mscorwks.dll and ...
4
votes
2answers
530 views

WinDbg/SOS: How to correlate managed threads from !threads command with System.Threading.Thread instances

Using WinDbg and SOS, I have the following: 0:011> !threads ThreadCount: 7 UnstartedThread: 0 BackgroundThread: 4 PendingThread: 0 DeadThread: 2 PreEmptive GC Alloc ...
4
votes
3answers
710 views

Get method name form delegate with WinDbg

I have the following dump of delegate object: Name: MyEventHandler MethodTable: 132648fc EEClass: 1319e2b4 Size: 32(0x20) bytes Fields: MT Field Offset Type VT ...
4
votes
1answer
3k views

Failed to load data access DLL, 0x80004005

0:025> !pe Failed to load data access DLL, 0x80004005 Verify that 1) you have a recent build of the debugger (6.2.14 or newer) 2) the file mscordacwks.dll that matches your version of ...
3
votes
1answer
72 views

getting line numbers of offending code in debug vs release builds

My understanding is that with crash dump of debug build you can get the line number of stack trace and this does not happen with release build. In order to try this, I created a very simple ...
3
votes
1answer
558 views

What to do with “The version of SOS does not match the version of CLR you are debugging” in WinDbg?

I'm having a problem with some of my apps. It's a wcf-based app running under IIS6 in Windows 2003 Server (x86): In Event Log I get such an error from "W3SVC-WP" source (EventID=2262): ISAPI ...
3
votes
1answer
104 views

How to tell if its a managed memory leak or native memory leak?

My .NET process that interops with native dlls is throwing an OutOfMemory Exception. Following is out put of !address -summary and --eeheap-gc coammands. Does this mean if its a managed leak or native ...
3
votes
3answers
76 views

Which debugging tool (if any) allows me to identify the thread that is holding a lock on a file?

I'm debugging a test that periodically raises an IOException, noting that a file can not be deleted because it is being used by another process. I suspect that the process is indeed my test harness, ...
3
votes
1answer
391 views

Cannot attach to process in .net 4.0

** post was edited, more info below I've just watched two great videos about Advanced Dotnet Debugging (by Brian Rasmussen) and I am trying to repeat some steps, but just don't know how to proceed ...
3
votes
1answer
131 views

Comparing two dump files for report on objects with highest growth

For debugging managed applications If I have two dump files, is there anyway to compare these two file? I am thinking about the scenario of memory leaks and if I take process snapshots at different ...
3
votes
1answer
585 views

inspect field on all instances in memory dump

I have a memory dump that I'm using to troubleshoot a client issue. This is a .NET (C#) application. The problem with my application is that too many instances of a particular class are being ...
3
votes
1answer
222 views

Mismatch in object size returned by sos.dll and in-memory process size

I have used the following sos command to enumerate all instances of a particular type in a running asp application (hosted on windows xp 4 GB machine). .foreach (obj { !dumpheap -type ::my type:: ...
3
votes
1answer
843 views

.Net Memory Dump: !eeheap -gc: where do the GC generations start and end?

I think I'm missing some fundamentals here so hopefully this post can clarify this. I've taken a dump and am looking at the managed heap and am interested in looking specifically at what objects are ...
3
votes
4answers
366 views

I'm looking for links to cdb/windbg + .net help

I just started using cdb and I love it! I've found and bookmarked a few interesting articles I've found on using cdb, but I'd love to see other peoples resources. What sites do you use to extract ...
2
votes
2answers
36 views

Automating WinDBG or otherwise extracting information from Dump Files?

Let's say I have a memory dump of a process. I want to run a report on it, so essentially I want to open WinDBG, load SOS and run a script that runs some commands, parses the output and then runs some ...
2
votes
2answers
142 views

WinDbg : Copy of SOS.dl x86 4.0.30319.237

Am using WinDbg to look into a process dump. The dump has been taken on an x86 server with Dotnet 4 SP1 (4.0.30319.237). I'm attempting to debug on my x64 machine using the x86 version of WinDbg - but ...
2
votes
1answer
112 views

Static objects are pinned and cannot be reallocated by GC?

I have a static variable in my class, when I look at this object via windbg/sos, it shows this object as Pinned. I assume that this mean GC cannot allocate this object anywhere else. Any ideas why ...
2
votes
1answer
26 views

GC vs GC SuspendedEE

When I run !threads -special command, I get following. There are other lines also in output that i have removed for brevity. OSID Special thread type 15 26ec GC SuspendEE 15 3174 ...
2
votes
2answers
61 views

Get the .NET framework version from a process dump [closed]

Possible Duplicate: How can I know the CLR version of a crash dump? If I open a dump file (of a managed process) in WinDbg, is there anyway of finding which version of .NET framework that ...
2
votes
2answers
75 views

Windbg - dumping System.Guid

When I use !do in windbg for System.Guid object I got list of fields for that GUID object. How can I see what is value of this GUID (string representation)?
2
votes
1answer
97 views

what does it mean when an object has no root using !gcroot with SOS?

I'm tracking a memory leak where I'm using !dumpheap -stat !dumpheap -mt !gcroot however !gcroot doesnt show anything, I've been thinking this means the object has no refs but hasnt been ...
2
votes
1answer
264 views

How can I download correct versions of mscordacwks and mscorwks?

I am trying to analyze an IIS memory dump usinf Windbg and SOS and ran into an issue with version of files mentioned above. My question is - is there a way I can download the different versions of ...
2
votes
1answer
339 views

!threads command showing XXX thread id

When I run the !threads command, in the left most columns for few threads i see id as XXX. My understanding is that this mean dead threads. Does this includes any threads that exited (gracefully or ...
2
votes
1answer
467 views

Is there a 64 bit version of psscor2?

I'm trying to debug a .NET 3.5, 32 bit application running on Windows 7/64 bit with WinDbg. I'd like to use psscor2, but I can't load it. I can't load sos, either. When I try to load psscor2, I get ...
2
votes
1answer
612 views

Windbg native call stack trace does not make sense

I have a simple test program causing an infinite wait on lock. public class SyncBlock { } class Program { public static SyncBlock sync = new SyncBlock(); private static void ThreadProc() ...
2
votes
1answer
263 views

understanding DumpStackObjects

I have a small test program. When I look into stack object for main thread, its showing MyClass twice there. Any ideas why there are two object of MyClass on the stack? class Program { ...
2
votes
1answer
297 views

Windbg with SOS, How to dump a c# struct

How do I dump a struct using windbg, is there a dumpstruct command similar to dumpobject? Or can dumpobject dump structs aswell?
2
votes
2answers
164 views

What's the story behind the name of the SOS (Son of Strike) debugger extension?

The title says it all really. What's the significance of the name "Son of Strike"? Does it serve any meaning or does it just sound cool?
2
votes
2answers
1k views

WinDbg/SOS: Explanation of !SyncBlk output

I am looking of a description of the output generated by the !SyncBlk command of SOS. Particularly I found no useful explanation on the column "MonitorHeld". This column shows high values in a series ...
2
votes
1answer
1k views

How do I use !gcroot

From within visual studio immediate window with SOS debugging extension loaded I can do !dumpheap -stat Then I get something like this: total 108,014 objects Statistics: MT ...
2
votes
1answer
187 views

How do I work effectively with SOS debugging extensions?

When I use .load SOS in Visual Studio's immediate window and accitentally issued a command that result in a long list of output (e.g. !dumpheap -type System.String -min 100), the immediate window just ...
1
vote
2answers
83 views

Which thread is using a given object?

I run dumpheap -type MyObjectType command to get the method table for MyObjectType. It shows three object on heap. I run dumpheap -mt <method table address> to get address. I run !gcroot ...
1
vote
3answers
89 views

Why do I see a call to WaitForMultipleObjectsEx in this method?

I have a .NET windows form application that goes in a hang state once in a while. When I took a dump of the process and open it via WinDbg/SOS, it show that one thread has a call to ...
1
vote
1answer
98 views

Using WinDbg to analyze .NET dump

I am using windbg to perform an analysis on a dump. Following are the commands that I have ran .loadby sos mscorwks - to load the sos dll ~* e !clrstack - to look at all the threads ~18s - changed ...
1
vote
2answers
69 views

Determine if process dump was generated on x64 or x86 machine

If I have a process dump file, is there anyway of knowing if the dump was generated on a x64 machine or x86 machines?
1
vote
2answers
350 views

windbg.exe: Failed to load data access DLL, 0x80004005

I'm trying to debug a 32 bit process dump from a process that ran on an x64 machine. I'm running an x86 version of windbg on my x64 laptop. I've followed the recommendations here, but I'm still ...
1
vote
1answer
200 views

windbg cant load sos clr

im not sure that windbg is the right tool, but that's what im trying now my asp.net app seems to have a memory leak, it keeps on growing by about 3 mb almost every time a page loads (then it goes ...
1
vote
1answer
54 views

What is mdToken and how does it differ from MethodTable?

As in the title, what is it and how does it differ from MethodTable?
1
vote
1answer
95 views

Is it possible to call a method from WinDbg / SOS

Is it possible to call managed method from windbg? Is there any .NET equivalent for .call? Or how to use it to call managed method? I'm interested in attaching as a live session to a process on ...
1
vote
0answers
96 views

what does HANDLE(RefCnt) mean in windbg?

The following is my checking gcroot of the object 0330e9a8. I found Its root is a hanle with its type is "RefCnt". How could I get the actual reference count of it. And How could I know WHICH object ...

1 2 3