|
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.
|
|
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 .
|
|
我需要对firefox进行跟踪调试,以便尽快搞清楚firefox的工作流程。我想用VS2010来做,在网上没有找到操作方法,不过网上有利用VS2005和VS2008进行调试的例子。参照其步骤,我来探究一下如何使用VS2010对Firefox进行调试。参考资料:
Debugging Firefox using Visual Studio .NET 2005
Debugging Firefox using Visual Studio .NET 2008 (2005)(完美调试firefox)
如何用vc调试firefox...
Started by JumuFENG on
, 12 posts
by 2 people.
Answer Snippets (Read the full thread at firefox):
Pdb不要无故删掉了
有一定基础用cdb/windbg调试也挺方便的.
|