Tagged Questions
The cdb tag has no wiki summary.
10
votes
2answers
1k views
Configure Qt Creator to work with CDB [closed]
Possible Duplicate:
How to get Qt Creator to work with CDB?
I am trying to use Cdb with Qt Creator. I don't know what Qt Creator needs for its Symbol paths or Source Paths and I can't seem ...
5
votes
4answers
1k views
Debugging the dreaded 'Application has failed to initialize' error
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 ...
3
votes
3answers
1k views
How to get Qt Creator to work with CDB?
I'm using Qt Creator 2.01 32-bit with Qt 4.7.1 on Windows 7 64-bit. I compiled my Qt library using Microsoft Visual C++ 2010. Now I want to use CDB with Qt Creator (or GDB if that works, or whatever ...
3
votes
4answers
365 views
I'm looking for links to cdb/windbg + .net help
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 ...
2
votes
1answer
599 views
Python integer to read-only buffer
I am using cdb for a constant database in python. I would like to associate integer id's with some strings, and I would like to avoid storing each of these integer id's as strings, and instead store ...
1
vote
1answer
67 views
Basic cdb: does cdb vary how it notates scope?
If I compile:
int *a;
void main(void)
{
*a = 1;
}
and then disassemble main in cdb I get:
pointersproject!main:
00000001`3fd51010 mov rax,qword ptr [pointersproject!a (00000001`3fd632f0)]
...
1
vote
1answer
357 views
cdb and windbg unable to load MiniDumps, but VS 2008 loads them fine
I am trying to build some automated crash dump analysis, but I cannot get cdb or windbg to load my crash dumps. They load just fine in VS 2008.
When I run dumpchk.exe on the file, I get:
Loading ...
1
vote
2answers
265 views
does cdb/windbg have an equivalent to autoexp.dat?
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 ...
0
votes
1answer
17 views
CDB doesn't show the line of code as WinDBG does for callstacks
I am using WinDBG 6.12.0002.633 X86.
I'm having an issue with the command-line debugger CDB not showing the same results as WinDBG for the k and kL commands.
In WinDBG, the k command correctly ...
0
votes
0answers
108 views
System.WeakReference Fragmenting Virtual Address Space in c#
I have a process which seems to be creating very large numbers of WeakReferences. I believe this is causing a fragmentation of the Virtual Memory Address Space for the process, as I can see in CDB ...
0
votes
2answers
736 views
can anyone explain how works CDbCriteria->scopes?
Im just checked a man page of CDbCriteria, but there is not enough info about it.
This property (available since v1.1.7) and i didn't find any help.
Is that for dynamically changing Model->scopes ...
0
votes
1answer
136 views
windbg, cdb unable to query for remote debugging server
I have no trouble running dbgsrv on one machine, and then from another machine using cbb to attach to the remote session with
cdb -premote tcp:server=ipaddress,port=port process
However for some ...
0
votes
1answer
142 views
Cannot download microsoft symbols when running cdb in a windows service
I have a .NET windows service that is calling cdb.exe to analyze crash dumps. I want to download the symbols from http://msdl.microsoft.com automatically when needed, using the argument:
-y ...
0
votes
0answers
165 views
Windows port of cdb, TinyCDB
Could you recommend Windows port of CDB, TinyCDB ?
TinyCDB does not compile on Windows and requires
fatal error C1083: Cannot open include file: 'unistd.h': No such file or directory
fatal error ...
0
votes
1answer
173 views
Read and edit .cdb files (Pocket Access) in C#
I need to make a program that can read and edit certain .cdb files (Microsoft Pocket Accesss files, created and used by legacy accounting mobile application).
I'd like to do that in C#, using VS2008. ...
0
votes
1answer
378 views
Windbg with xp embedded, ntdll.dll symbols fail, other symbols affected?
I am using windbg with xp embedded. Attempting to fetch the operating system symbols fails with the message "Symbol file could not be found. Defaulted to export symbols for ntdll.dll". (Is this ...
0
votes
1answer
78 views
C++ using cdb_read returns extra characters on some reads
I am using the following function to loop through a couple of open CDB hash tables. Sometimes the value for a given key is returned along with an additional character (specifically a CTRL-P (a DLE ...
0
votes
2answers
419 views
How to avoid “(null)” StackTrace in DPH_BLOCK_INFORMATION?
I'm having a blast tracking down some heap corruption. I've enabled standard page heap verification with
gflags /p /enable myprogram.exe
and this succeeds in confirming the corruption:
...
0
votes
1answer
257 views
Does adplus/cdb crash dumps still work on Vista 64 Ultimate?
I am doing some research on a asp.net bug. I tried to get adplus to give me a crash dump file from IIS crashing. I have done this in the past on XP machines, but with my current Vista Ultimate setup ...