Tagged Questions

The Data Display Debugger has GUI front-end features such as code browsing, data display and interactive graphic displays. DDD is primarily used on Unix based systems.

learn more… | top users | synonyms

19
votes
8answers
4k views

What is a good unix alternative to DDD (Data Display Debugger)?

I am developing c on linux using vim and debugging using ddd. However I find that ddd performs very poorly at scrolling on this machine so its sometimes very frustrating to use. I like the way that ...
6
votes
2answers
1k views

Remote debugging using gnu DDD

Question: Is it possible to debug, when the target is on a remote host? Example: # ddd --debugger /usr/bin/bashdb <sript-name> (on remote host)
4
votes
3answers
144 views

Can DDD account for strings?

I am trying to figure out a problem in my c++ code and have DDD to debug with on a Sun machine. I am required to use strings per some standard we have. But whenever DDD encounters a string variable, ...
4
votes
3answers
834 views

DDD Alternative that also Draws Pretty Pictures of Data Structures

Is there anything other than DDD that will draw diagrams of my data structures like DDD does that runs on Linux? ddd is okay and runs, just kind of has an old klunky feeling to it, just wanted to ...
3
votes
1answer
72 views

Generate a coredump from crashed process attached to ddd/dbx

I'm running dbx in ddd on Solaris. The attached process has crashed and I can examine the stack in the debugger. I want to save this core dump to disk for later. Google shows me several ways to ...
3
votes
4answers
9k views

windows version of the GDB frontend DDD

Is there a native (not cygwin) version of DDD available for download somewhere?
3
votes
4answers
3k views

What's the bare minimum Cygwin install to have DDD running properly on XP?

I’m using the gcc in MinGW that comes with Strawberry Perl, on Windows XP. I’d like to have ddd (the Data Display Debugger) as well but apparently on Windows the simplest way to get ddd is by running ...
2
votes
1answer
41 views

Can't set breakpoints when using gdb in emacs (or DDD)

I'm trying to use gdb with emacs. The library that I'm trying to debug is loaded by a process and can't be run directly. Hence I attach to the process by using the attach command inside gdb. Attaching ...
2
votes
0answers
206 views

Can one configure gdb/ddd to never step into certain functions? [closed]

Possible Duplicate: Preventing GDB from stepping into a function (or file) I have some infrastructure C++ code (containers, memory managers etc.) and I want the debugger to never step into ...
1
vote
2answers
140 views

What is gdb/dbx doing when ddd is “waiting for it to get ready”?

I use ddd as a front-end for both gdb and dbx for C++ programs. Quite often, without any apparent cause, I will try to next and it will hang with the message "Waiting for gdb to get ready" or ...
1
vote
2answers
259 views

getting info about threads in gdb/ddd

I am debugging a multi threaded application using ddd. At the same time each second I can see on DDD console out that a new thread is created [NewThread 0x455fc940 (LWP 27373)] and destroyed ...
1
vote
2answers
409 views

How to skip past loops in ddd (gdb)

During many, sometimes inundating, debugging sessions using DDD, I stumble upon loops. And I keep pressing next to get past it, and if there are many iterations, I just set a break point right after ...
1
vote
1answer
223 views

How to change Motif theme in DDD and Insight to something more pleasant?

I have Tk version 8.5.3 installed, theming engine support added since 8.5. Still, I don't know how to use themes, default Motif is just ugly: Screenshot
1
vote
2answers
207 views

ddd debugger enters an infinite loop when the program tries to read console input

when a C++ program reads from cin, the ddd provides it with "1" instead of letting me type the input in its console. Since the program reads interactive commands, "1" is an invalid command and ddd ...
1
vote
1answer
131 views

Is there a gdb (or similar) frontend that will show the program stack visually?

Basically, I'm looking for something where I can break execution and then see a visual representation of the stack in memory. DDD doesn't have this as far as I can tell.
1
vote
1answer
116 views

ddd hangs on start

When I start ddd, it seems hang waiting for gdb. Here is the tail end of output ddd --trace: # Saving session in ...
1
vote
2answers
736 views

How can I debug a program using scanf with ddd?

When ddd encounters a scanf statement, it displays "Waiting until GDB gets ready" message. The debugging activity stops here. Please guide me of overcoming this bug. I'm using an amd64 athlon ...
0
votes
0answers
18 views

initialize a 'ddd' session with custom commands

i want 'ddd' to execute a list of commands from a file, before i start my debugging session. I studied the 'ddd' documentation but i can't find anything appropriate. Except the possibility to choose ...
0
votes
0answers
24 views

ddd debugger: Does exe need to be built within CygWin?

On Windows I normally build my exe in a Windows command prompt with the VC Compiler and my own hand crafted makefile. I was thinking of transitioning to g++. To remove my dependency on MSVC I was ...
0
votes
1answer
50 views

C Buffer overflow Display message (Using Ubuntu and DDD)

#include <stdio.h> #include <stdlib.h> void badf(int n, char c, char* buffer) { int i; for (i=0; i<n; i++) { buffer[i]=c; } } void f(int n, char c) { char ...
0
votes
2answers
149 views

How to find where a process is stuck using DDD

I have a TCP Svr process written in C and running on CentOS 5.5. It acts as a TCP Server for external clients and also does some IPC communication with other processes in the system using Unix Domain ...
0
votes
5answers
243 views

GDB (DDD), debugging questions

Some things in GDB (actually using DDD gui) confuse me, when debugging my own C++ codes: 1) Why is there no backtrace available after a HEAP ERROR crash? 2) Why does gdb sometimes stop AFTER the ...
0
votes
0answers
198 views

Installing x86_64 version of ddd, but missing .so libraries

I am trying to install ddd on my x86_64 GNU/Linux machine. I have tried installing a few different versions of ddd, but when I type "rpm -i ddd..." I get: ddd-> rpm -i ...
0
votes
2answers
3k views

warning: (Internal error: pc 0x804a6b0 in read in psymtab, but not in symtab.) g++

I am trying to debug a program using ddd. When I try to enter any function, or within main() itself, I get the following warning: warning: (Internal error: pc 0x804a6b0 in read in psymtab, but ...
0
votes
0answers
170 views

ddd hangs on start

Question has been asked before and I see bug report on ddd newsgroups but none of the suggested solutions work for me. It comes up but when you try doing anything like opening a file it hangs with ...
0
votes
0answers
96 views

ddd display long list

When tab or !ls in command window in ddd, there're always a long list to display in the command window. However, unlike other pager behavior, ddd will not stop and let you hit enter or something to ...
0
votes
3answers
270 views

DDD debugger: save A command history between sessions

I noticed that my command history remains only during the current session, and once I re-start ddd, say with the same process, it starts with a clean slate. Is there way I can force the latest history ...
0
votes
2answers
118 views

ddd gets inactive when mouse is moved out of its window

My ddd window doesn't take any keyboard input when my mouse cursor is moved out of the window. Although ddd window is still active, but it doesn't take any inputs. I will have to move my mouse over ...
0
votes
1answer
363 views

Starting debugging with DDD

I would like to use DDD to debug the source code of Gedit and GTK+. I start DDD by command ddd gedit. Now I can run the project and I found the source window but I can't see the sources of Gedit and ...
0
votes
1answer
247 views

Does DDD support Perl?

Can DDD (Data Display Debugger) be used for Perl data structures?