|
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....
There may be some items you have not seen yet .
It has some links that mayCode project has a great beginners article on WinDbg .
Though it is more focused on Native than Managed debugging.
|
|
I occasionally run into this error when trying run an executable I've built on windows, but I have no idea what causes it or how to fix it. With the normal MSVC debugger, it just pops up a dialog and exits with no chance to do anything or look at anything...
Started by Chris Dodd on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Usually, it means Windows.
If I recall correctly, exception code c 22 stands for Access Denied.
|
|
Hello. Just for fun, how close can we get to debug an application in C# using only the command-line out-of-the-box? No other software, just the command-line. That is, for instance, is there a way to peek at the values of variables, interact with output...
Started by Dervin Thunk on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
For managed question) is MDbg , which is a command line debugger for managed code..
There are command line debuggers that come with Debugging Tools for Windows like CDB .
|
Ask your Facebook Friends
|
When ngen is executed on a .NET managed application at installation time, and a crash dump is retrieved from Windows Error Reporting for the app, how can you use it to see a stack trace, variables, etc.?
Here's some background related to the question:...
Started by Edward Brey on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The easiest....
C-code The guy seems to be able to load some symbols to debug his application from the crash dump this is managed code, you may need to set the _NT_EXECUTABLE_IMAGE_PATH environment variable to point the assembly.
|
|
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):
I had a similar problem a few months ago (I do not remember the error code debug/cancel dialog on most....
The issue looks like an Read AV and if the app works properly in Administrative Tools .
Under cdb/windbg and see the behavior.
|
|
I've finally managed to run the QtCreator debugger on Windows after struggling with the Comodo Firewall incompatibilities.
I was hoping to switch from an older version of Qt and Visual C++ to the newest version of Qt and QtCreator, but the debugger performance...
Started by rpg on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Rumour ....
Some of the Qt DLLs are less than half the size of their MinGW equivalents .
Building Qt for MSVC compiler/linker is much better at removing unused code.
It seems much faster than gdb.
MS CDB (Microsoft Console Debugger) support.
|
|
Hi,
I want to use the VC++ toolset to build programs for XP and Vista, but I do not want to buy the IDE, because I want to use Qt Creator.
I would download the Windows SDK and the Windows Debugging Tools, but I'm not sure if this includes everything that...
Started by rpg on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The SDK includes everything that is needed....
I am now using the CDB + WinSDK approach and it works.
The Debugging tools for Windows kit includes CDB, but make sure that you're using the latest version, it didn't as shown in the docs.
|
|
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):
If by "Graphical DebuggerWell, compared to cdb, WinDbg is a graphical debugger, albeit not the most friendly one", you mean it will show you the assembly....
It has support for symbol server.
managed (.Net) and native (Win32) debugging.
|
|
I have a nightly build DOS batch script that invokes devenv.exe to build a solution file. Intermittently I observe a devenv.com crash. I get a DW20.exe "share your pain" dialog.
1) If Debug button is pressed, I am not presented with a usual "Choose your...
Started by GregC on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You might try installing Debugging Tools for Windows then use the -iae option (for NTSD/CDB.
|
|
Computer Acronyms by Doctor Inferno on Thu 09 Oct 2008, 2:43 am
0 -A
2GL >> Second Generation Languages (Basic, Fortran, Cobol, C, etc.)
3D >> Three Dimensional (usually refers to graphics, movies, wallpaper etc. created to look as if they...
Answer Snippets (Read the full thread at geekpolice):
Better than an SX or SLC) E
EBCDIC >> Extended Binary Coded Decimal Interchange Code (8-bit code (UNIX tape backup utility)
ECC >> Error Correction Code
ECNE >> Enterprise Certified;> 1,000,000,000 bytes....
|