|
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 the max usefulness from cdb (windbg)
Started by John Weldon on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://www.codeproject.com/KB/debug/windbg_part1.aspx
Here is a list of some commonly used features
http://www.windbg.info/doc/1-common-cmds.html
This... .
There may be some items you have not seen yet .
Code project has a great beginners article on WinDbg.
|
|
I'd like to change the way some types are displayed using either 'dt' or '??' in a manner similar to how you can do that with autoexp.dat. Is there a way to do this?
For example, I have a structure something like this:
struct Foo { union Bar { int a; ...
Started by aaron on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You have a couple potential options - you can write a simple script file with the debugger commands to dump the data structure... .
I don't think there's anything as simple as autoexp.dat.
You can say du or da to have it dump memory as unicode or ascii strings .
|
|
I'm trying to debug a program, that i don't have the source code for: explorer.exe
It's a native Win32 application from Microsoft, and symbols are avilable.
All i need now is a (graphical) debugger that supports symbols.
OllyDbg is a graphical debugger...
Started by Ian Boyd on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Well, compared to cdb, WinDbg is a graphical debugger, albeit not the most friendly one.
|
Ask your Facebook Friends
|
An application I am working with is exhibiting the following behaviour:
During a particular high-memory operation, the memory usage of the process under Task Manager ( Mem Usage stat) reaches a peak of approximately 2.5GB (Note: A registry key has been...
Started by LeopardSkinPillBoxHat on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
cdb/WinDbg let you do it via
bp kernel32.
Just make sure it resolves the address.
Breakpoint on the above.
|
|
My software recently got deployed to a customer who said that the application was crashing immediately after it started. After some initial debugging, the customer provided me remote access to one of the computers which was unable to run the application...
Started by blak3r on
, 14 posts
by 14 people.
Answer Snippets (Read the full thread at stackoverflow):
The issue looks like an Read AV and if the app works properly .
Under cdb/windbg and see the behavior.
|
|
On Tue, 10 Feb 2009 22:25:01 +0800, "Bill Sun" <bsunsh@163.com
Pat,
I tried the windbg to trace into MFC code, it is strange that I set nothing
on windbg, but windbg can trace into MfC souce code line really. I am not
familliar with windbg, ...
Started by Bill Sun on
, 10 posts
by 3 people.
Answer Snippets (Read the full thread at omgili):
I was a member of the kd/cdb/windbg
development team for 10.
I don't know what to tell you.
|
|
On Fri, 6 Feb 2009 22:33:53 +0800, "Bill Sun" <bsunsh@163.com
I am newer to CDB, Could anyone can help me how to set CDB to trace into MFC
code which was installed into the folders under "c:/Program Files/Microsoft
Visual Studio/VC98/"
I can ...
Started by Bill Sun on
, 8 posts
by 2 people.
Answer Snippets (Read the full thread at omgili):
Have you looked in the debugger help on triaging symbol problems? Did you
run the debugger with the -n command line switch so that you can watch... .
On Fri, 6 Feb 2009 07:41:13 -0800, "pat styles [microsoft]" <pat.styles@microsoft.com
Hello Bill .
|