0
votes
2answers
57 views
Unable to debug the kernel driver using Serial cable
I am new to driver stuff. I have tried to debug the kernel driver using serial COM port without success. Could someone show me proper direction how to fix the problem?
I am seein …
0
votes
1answer
13 views
WinDbg .for loop
I am having trouble getting the WinDbg .for command to work.
I would like to dump an array of c++ structs.
?? gpTranData->mpApplCodes[0] works for a single entry but I would like …
1
vote
1answer
22 views
What does “Eclipsed” mean in WinDbg?
In the "Locals" window of WinDbg there are several names with the value <Eclipsed>. In some cases the same name exists multiple times which one real value and the others are …
0
votes
4answers
43 views
Tips for debugging a made-for-linux application on windows?
I'm trying to find the source of a bug I have found in an open-source application.
I have managed to get a build up and running on my Windows machine, but I'm having trouble findi …
1
vote
1answer
21 views
How do i get speciffic old versions of the .net runtime for use in windbg?
I am debugging an old process dump from one of our servers. It was created about a month ago. To work with SOS, I need version 2.0.50727.4016 of mscorwks.dll and mscordacwks.dll fo …
1
vote
2answers
82 views
WinDbg doesn’t load symbol file that is created using the same source but built at a differnt time than the original
Hi,
We released a product (C#.NET library) and didn't store the pdb file of the library, assuming that we can always generate symbol files using the same source code.
Now, we wan …
1
vote
4answers
88 views
Debugging high cpu usage
So I have an issue on our production environment where 2 threads have been running for like 9 hours and 5 hours and they are causing the cpu usage to stay around 99%
I've included …
0
votes
3answers
51 views
Question about using windbg for a dll called from Labview
I am attempting to debug a dll that is called by a Labview application. I have the right symbol files (downloaded from microsoft) for things like ntdll.dll and others. I of course …
1
vote
3answers
59 views
How can I extract DLL file from memory dump?
I have a memory dump (unmanaged process) .
How can I extract (using windbg) one of the dlls loaded into the process ? I mean actually saving the dll file into the disk
0
votes
3answers
72 views
Analysing crash dump in windbg
Hi,
I am using a third party closed source API which throws an exception stating that "all named pipes are busy".
I would like to debug this further (rather than just stepping th …
0
votes
5answers
58 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
55 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
2answers
48 views
WinDbg showing different call stacks when attached to process when compared to crash dump
I'm analysing a deadlock that's occurring when using a native library alongside managed code. I'm using WinDbg to debug the problem with the intention of saving a dump such that t …
6
votes
3answers
140 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 app …
1
vote
3answers
157 views
Tell tale sign of memory fragmentation (as opposed to a memory leak)?
First I realize that leaks can fragment memory badly, but please bear with me.
Using WinDbg and attaching to a process: Using !heap (or another WinDbg command), what should I ex …
