|
I've got a dump of a .Net process that has hung due to a deadlock (the gui thread is no longer responding, and my logs show that some threads have stopped responding). I have taken a snapshot and am now looking through it in windbg, and all threads bar...
Started by Oskar on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
}
You can log the constructor and Dispose) can help you, it's somewhat touchy but this msdn mag bugslayer article show's how to use WCT in windbg.
}
with
using( new DisposeableLock() ) { ...
Mylock) { ...
|
|
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
After a release of new ASP.NET code, we started getting ...
Started by David on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Open the first file with....
Lt;ADPlus> <!-- Add log entry, log faulting thread stack and dump full on first chance;Actions1> Log;Stack;FullDump </Actions1> <!-- Depending on what you intend - either stop OutputDir.
|
|
Hi!
My PC is having alot of BSOD everyday and not only once usually 1-6times/day, its getting rly annoying, and specially during gamming.
I started to look up information how to fix this and started using WinDbg but I kinda dont understand the codes, ...
Started by FreedomV on
, 6 posts
by 2 people.
Answer Snippets (Read the full thread at sevenforums):
You've got defective RAM.
Errors 5passed O.o, is it possible to show the result of the test?, couldnt find any logs at my usb to show the result of the test?, couldnt find any logs at my usb memory sticks.
|
Ask your Facebook Friends
|
How do you troubleshoot events that are not clear when you read them?
Is there a website to search for those Event IDs and errors?
In the following example event it is clear that the gateway resolution fails for the network location awareness service,...
Started by TomWij on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
All in all its a hunt the thimble game and you'll get better at it as you the invisible details: procmon, procexp, tcpview, windbg etc., until the event occurs again.
For other log messages.
|
|
Is there an equivalent in dbg/cocoa/apple word for the Microsoft public symbol server and windbg ( http://msdl.microsoft.com/download/symbols )? So basically 1) does gdb support the concept of a symbol server and 2) does apple supply a public URL for ...
Started by Remus Rusanu on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The Symbolicator (a tool to symbolicate crash logs—reliant on dSYM bundles, but less finicky than gdb about.
|
|
I have Visual Studio 2008 with SP1 installed and it is crashing when I'm using lambda expressions in the Moq Framework.
At first I thought the problem was Resharper...but now that I have uninstalled it, VS 2008 still crashes. I'm able to replicate the...
Started by mezoid on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I suggest you give.
Just a few days ago, I learned about devenv.exe 's /log switch .
I'd suggest using WinDbg to run an instance of VS, and when it crashes look at managed and unmanaged callstacks.
|
|
I'm using windbg to examine some crash dumps sent in by an app. There seems to be some correlation between a crash I'm seeing and having a certain 3rd party DLL loaded into the process (a flaky Winsock LSP, I suspect). To make this sort of analysis easier...
Started by twk on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
That will cause WinDbg....
I'm not sure).
I see why you want to do this, but you can output from WinDbg to a log and correlate with a list-line version of WinDbg; they both use the same engine, it's just a different frontend.
|
|
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 through) so I can actually learn what is happening under the covers.
I have...
Started by csharpdev on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
This is an excellent resource for using WinDbg to analyze crashes
In postmortem debugging with Windbg....
Reflector)
Before using WinDbg to analyze the dump, try using Process-Monitor (SysInternals I gave you a good starting point.
|
|
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 it out, but when a container with a complex type (...
Answer Snippets (Read the full thread at stackoverflow):
I used to think that these are for people who can't use a debugger, but I now realize that they... .
For this reason I'm increasingly using logging frameworks and logging statements .
I often find debugger support for STL data types inadequate .
|
|
Hi folks, I have a dump of a windows service i made. The exception is that my code can't move a file (for some reason). Now, in my code there's a number of places where i move files around the filesystem. So, using Windbg, i'm trying to see the code where...
Started by Pure.Krome on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
To log the file moves and/or catch the exceptions, because the problem will probably happen again.
|