Tagged Questions

0
votes
5answers
59 views

Why aren’t these WCF related resources cleaned up?

Here is my scenario: Start my test program and immediately break into the debugger (WinDBG) Take a !DumpHeap -stat and observe there are no System.Net* or System.Xml* objects any …
0
votes
3answers
62 views

How to walk a native object in WinDbg?

I am investigating what is taking up lots of memory in my app. Using the !DumpObj command, I can get around the managed objects. But how do I do the equivalent for native objects …
0
votes
1answer
26 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 i …
0
votes
1answer
125 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 …
0
votes
0answers
8 views

Using SOS, it possible to merge all files in a branch to the trunk in one operation?

Is there any way to tell SOS to merge all the latest files in a given branch into the trunk? I've checked out all the files that are going to change. I can merge single files by …
0
votes
4answers
190 views

Windbg: SOS.dll: !gcroot: DOMAIN(xxx):HANDLE(Pinned):Does it really mean object is pinned?

The documentation on the SOS.dll Windbg extension seems sparse. After issuing a !gcroot <address>, I am getting something containing the following: DOMAIN(XXX):HANDLE(Pinne …
0
votes
1answer
145 views

Lost in WinDbg with 64-bit dump on 32-bit machine

I'm a newbie with WinDbg and got this dump from the WER ReportQueue folder on a 64-bit Windows 2008 Server. I need to examine the dump and want to do so on my developer machine on …
0
votes
2answers
61 views

Can’t Check in folder recursively in SourceOffsite

I am trying to check in a folder which contains few more folders inside it. How do I check them in recursively using SourceOffsite? If I select a parent folder, only the files gets …
1
vote
1answer
209 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 …
2
votes
4answers
106 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 …
0
votes
2answers
271 views

How to see managed exception details in WinDBG?

VS2005 C# Compiler crashes during our team's nightly build process. I attach to it with WinDBG, load SOS extensions, print the callstack, but cannot see exception info. I tried ! …
7
votes
4answers
570 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?
6
votes
4answers
280 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 …
0
votes
2answers
329 views

How can I view the local variables on the evaluation stack when debugging a .NET CLR application?

I'm using Windbg (with the sos extention) and trying to debug a crashed application. I was able to dump the IL of the call that threw the exception and by examining the code, it s …
0
votes
2answers
158 views

How do I evaluate dependency properties in silverlight/WPF from S.O.S. ?

Hello all. This question is fairly straightforward -- I am trying to debug a memory leak in a silverlight application using s.o.s. I was able to get some good info using !gcroot …