Tagged Questions

WinDbg is a user and kernel mode debugger for Windows. It can be used to debug both native and managed code.

learn more… | top users | synonyms

57
votes
10answers
3k views

How can I find the data structure that represents mine layout of Minesweeper in memory?

I'm trying to learn about reverse engineering, using Minesweeper as a sample application. I've found this MSDN article on a simple WinDbg command that reveals all the mines but it is old, is not ...
47
votes
6answers
7k views

Large Object Heap Fragmentation

The C#/.NET application I am working on 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 seem to make any sense so I was ...
40
votes
3answers
719 views

Is this “should not happen” crash an AMD Fusion CPU bug?

My company has started having a number of customers call in because our program is crashing with an access violation on their systems. The crash happens in SQLite 3.6.23.1, which we ship as part of ...
33
votes
21answers
7k views

What is your favourite Windbg tip/trick?

I have come to realize that Windbg is a very powerful debugger for the Windows platform & I learn something new about it once in a while. Can fellow Windbg users share some of their mad skills? ...
30
votes
6answers
3k views

Starting to learn Windbg

After being troubled by an issue that I simply did not have the knowledge to debug, I've just decided that I have to learn how to use Windbg. My only problem: I have no clue where to start :-( I'm not ...
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 ...
23
votes
8answers
5k views

Why use windbg vs the Visual Studio (VS) debugger?

What are the major reasons for using Windbg vs the Visual Studio debugger? Edit: and is it commonly used as a complete replacement for the VS debugger, or more for when the need arises.
12
votes
5answers
570 views

Are there any books that “teach” WinDbg?

I know my way around the visual studio debugger pretty well. However, from time to time it seems it is not sufficient, and I know that there's WinDbg and I already have used it (the Windows GUI ...
12
votes
4answers
906 views

Why does the number of threads reported by WinDbg, Task Manager and VS Debugger differ?

While my .Net 3.5 app was running, the Windows Task Manager shown that my app had 16 threads. I collected a memory dump for the process and opened it using WinDbg/SOS. Running the !threads command ...
11
votes
2answers
3k views

Help catching StackOverflowException with WinDbg and ADPlus

Short Version I want an ADPlus script that will do a full memory dump on the first-chance StackOverflowException, before anything is cleaned up, and ignore all other exception types. Log Version ...
11
votes
7answers
1k views

Object not garbage collected, but contains no gcroots

Running into a prickly problem with our web app here. (Asp.net 2.0 Win server 2008) Our memory usage for the website, grows and grows even though I would expect it to remain at a fairly static level. ...
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?
10
votes
4answers
125 views

Looking for ideas debugging a tricky windows service startup gremlin

In the last few months I've received few reports from QA about one of our services hanging. Upon examining a hang dump using WinDbg, every time I discovered the same thing: Loader lock critical ...
10
votes
2answers
4k views

How can you change an age-mismatched PDB to match properly?

Our nightly build process was broken for a long time, such that it generated PDB files that were a few hours different in age than the corresponding image files. I have since fixed the problem. ...
9
votes
1answer
115 views

What is an “Async Pinned Handle”?

I'm trying to investigate a really nasty software crash which is possibly related to a managed heap corruption (since it happens during a garbage collection). Using WinDbg with the (SOS) !gshandles ...
9
votes
4answers
13k views

How to use WinDbg to analyze the crash dump for VC++ application

Any one knows how to use the windbg for analyzeing dump file. Please share the info how to analyze crash dump using windbg. Thanks, Haranadh
8
votes
3answers
168 views

What's the best way of finding a heap corruption that only occurs under a performance test?

The software I work (written in C++) on has a heap corruption problem at the moment. Our perf test team keep getting WER faults when the number of users logged on to the box reaches a certain ...
8
votes
4answers
476 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
4answers
501 views

How to find all instances of types that implement a given interface during debugging

I am looking for a way to locate all current instances on the heap of types that implement a given interface (during WinDbg debugging that is). As interfaces are not types in the sense that you can ...
7
votes
1answer
285 views

What can “Pin” an object in memory in Silverlight?

I am working on debugging an application that seems to leak memory like crazy; most of it seems due to fragmentation from pinned objects(downloaded image data in a WriteableBitmap). However, I am not ...
7
votes
2answers
150 views

Good extensions for WinDBG?

Does anyone have any good extensions for WinDBG? Specifically managed code? I obviously use SOS, and I've heard/dabbled with a few others as necessary in the past, but never saved them (d'oh!). I ...
7
votes
2answers
304 views

Debugging .Net String value in windbg

I have a .Net application dump which captured an exception, I'm analysing using windbg and interested in the value of a String parameter on one of the methods. I've isolated the String object. My ...
7
votes
1answer
3k views

_NT_SYMBOL_PATH format

I'm trying to use windbg more, and I keep having problems with the symbol cache. It isn't clear to me what the format of the string is supposed to be. I have a few requirements: use Microsoft's ...
7
votes
4answers
12k views

WinDbg symbol resolution

When using WinDbg, where should the private symbol files (pdb?) be placed? My situation is: I have a DLL which I want to debug. I have the source code and symbol files for this DLL. This DLL is ...
6
votes
0answers
268 views

Show source code in windbg when running a process through ntsd -d

I can't make source code show in windbg when I pipe ntsd -d on the target through windbg -k, but it works when I debug locally. I want to debug the very first code execution of Winlogon.exe and ...
6
votes
2answers
859 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
4answers
299 views

.Net Garbage Collector - See what is promoted to Gen2 during Runtime

My program is promoting memory to Gen2 at a very high rate (about 1MB/Sec) and it causes performance hit when Gen2 collection occurs. Every attempt I made to understand which objects were promoted ...
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
2answers
436 views

Dump file analysis of Java process?

If I take dump, using Windbg, of Java process running on Windows Can I analyze (easly?) the Java heap, objects, and threads? Just like I could do with SOS for .Net process? Otherwise - how can I ...
6
votes
1answer
652 views

Can I install both x86/x64 windbg on my x64 WIN7?

I need to analysis some x86 dump file, So I want to install the x86 windbg on my computer. or if I can use the x64 windbg to analysis the x86 dump file?
6
votes
2answers
853 views

WinDbg not telling me where my string is rooted

I am trying to track down why a string is stored so long in my application, and eating up an excessive amount of memory. I have a Windows Service which runs regularly. It reads data from a database ...
6
votes
4answers
176 views

Are there more secure alternatives to the .Net SQLConnection class?

I'm very surprised this issue hasn't been discussed in-depth: This article tells us how to use windbg to dump a running .Net process strings in memory. I spent much time researching the SecureString ...
6
votes
3answers
466 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
3answers
2k views

win32 window in WPF

Recently our application encountered a strange problem. The application has a win32 window in the WPF window, when resize the WPF window, the problem occurred. StackTrace: Exception object: ...
6
votes
4answers
778 views

OutOfMemory, but no gcroots for many objects

We are developing a rather large Windows Forms application. In several customers' computers it often crashes with OutOfMemory exception. After obtaining full memory dump of the application moments ...
6
votes
2answers
598 views

publishing your own Symbol site for WinDbg

This is an interesting challenge and I am not sure if anyone out there has undertaken it. I work for a software vendor, selling a large enteprise scale Microsoft.NET based software. Most of the ...
6
votes
2answers
2k views

Is my heap fragmented

0:000> !dumpheap -stat total 1755874 objects Statistics: MT Count TotalSize Class Name 7b9b0c64 1 12 System.Windows.Forms.Layout.TableLayout+ColumnSpanComparer .... 7933303c ...
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 ...
6
votes
3answers
1k views

How can I know the CLR version of a crash dump?

I have a minidump crashed from a .NET application. Is there any way to know the CLR version (e.g. version of mscorwks.dll) of the fault machine (which generates the crash dump) using either Windbg or ...
6
votes
7answers
1k views

Debugging Delphi Application on Non Development Environment

I am attempting to use WinDBG or another debugger to debug a CodeGear Delphi 2007 Windows application on a remote machine. I have been unable to produce symbol files for WinDBG. Is there a way to ...
6
votes
6answers
2k views

Debugging C++ STL containers in Windbg

Windbg fans claim that it is quite powerful and I tend to agree. But when it comes to debugging STL containers, I am always stuck. If the variable is on the stack, the !stl extension sometimes figures ...
6
votes
4answers
1k views

Interpreting Stacks in Windows Minidumps

As someone who is just starting to learn the intricacies of computer debugging, for the life of me, I can't understand how to read the Stack Text of a dump in Windbg. I've no idea of where to start on ...
5
votes
1answer
60 views

Hang in COM application with C# plugin

I've got a problem where our application hangs on our customers' machines that I've been on for days now without solving. The problem arises quite randomly from what we've seen, even though that may ...
5
votes
1answer
58 views

How to view VB6 control-level variables in WinDbg?

I have a crash file where I can see that one of my own VB6 user controls is responsible for the crash; i.e. one of its methods is part of the stack trace and I can see the line responsible. From ...
5
votes
1answer
116 views

application exits (no Exception) when referencing 64bit dll from C#

I've compiled lzo2.dll 64 bit and now looking to use it in a C# program: I'm using the following class to test (similar code works for 32bit lzo.dll): [DllImport("lzo2.dll")] private static extern ...
5
votes
3answers
97 views

How can .NET threads be waiting on a syncblk which is not owned by any thread?

I have a crash dump from my app showing a bunch of threads waiting on a syncblk, and the syncblk shows that it has no owning thread. How is that possible? I'm trying to reproduce the symptom in a ...
5
votes
3answers
226 views

What do the different columns in the “!heap -flt -s xxxx” windbg command represent

I've been doing some work on high memory issues, and I've been doing a lot of heap analysis in windbg, and I was curious what the different columns really mean in "!heap -flt -s xxxx" command. I ...
5
votes
1answer
400 views

Determine thread wait time in WinDbg with user-mode dump

is there any way in WinDbg to determine since what date/time a Windows thread is blocked by functions like WaitForSingleObjects or WaitForMultipleObjects? I know how to do this in kernel debugging ...
5
votes
8answers
883 views

C++/msvc6 application crashes due to heap corruption, any hints?

let me say first that I'm writing this question after months of trying to find out the root of a crash happening in our application. I'll try to detail as much as possible what I've already found out ...
5
votes
4answers
451 views

How can I create objects based on dump file memory in a WinDbg extension?

I work on a large application, and frequently use WinDbg to diagnose issues based on a DMP file from a customer. I have written a few small extensions for WinDbg that have proved very useful for ...

1 2 3 4 5 14