Tagged Questions
0
votes
0answers
18 views
Warning thread 0x7f5xxx terminated without calling +exit
I'm using the linux version of GCD (libdispatch) to handle multithreading in an application.
Recently the following message displayed during runtime:
Warning thread 0x7f56f40008c8 terminated without ...
0
votes
0answers
17 views
Start several gdb processes in terminal emulator in split screen modus
I'm using gdb to debug a parallel mpi-code 'prog'. For that I use a small number of processes, say 'M' and do something like
mpiexec -n M xterm -e gdb ./prog
This pops up M xterms with each of them ...
0
votes
0answers
53 views
How to generically pretty print C structure values like in gdb?
When debugging a C program with GDB I can easily pretty print values of a structure type.
Because GDB has read all symbol/debugging information it knows the layout of that structure.
Sometimes I ...
1
vote
2answers
39 views
Print the whole linked list in gdb?
I have a linked list
struct node {
data_t data;
node_t *next;
};
typedef struct {
node_t *head;
node_t *foot;
node_t *curr; // for iterator
unsigned int size;
} list_t;
...
1
vote
1answer
19 views
When using gdb to debug program, Is there any command output file descriptor information?
When I use gdb to debug a program, I want to look the file descriptor information about the debugging progress. I use "info file", "info proc" commands, but these command outputs don't include file ...
0
votes
1answer
48 views
how to change debuginfo-install repository
[root@new-host ~]# gdb -q hello1
Reading symbols from /root/hello1...done.
(gdb) r
Starting program: /root/hello1
Program exited with code 0244.
Missing separate debuginfos, use: debuginfo-install ...
-2
votes
1answer
59 views
During startup program terminated with signal SIGKILL, Killed [closed]
Wat could be the reasong,when I run my binary without gdb,It runs fine.And when I run it using gdb it gives me error message
During startup program terminated with signal SIGKILL, Killed
And in ...
2
votes
4answers
109 views
How can learning assembly language help me in Debugging C programs?
I try writing simple applications and whenever any error occurs, will try to debug and understand what is causing the error.
As stated in the title how can learning assembly language help me in ...
1
vote
1answer
42 views
gnu ld/gdb: separate debug files. How to produce the debug file when there's too much debug info to link?
There's now gdb and binutils support for separating debug info from the binaries to be debugged. Docs describing this can be found in:
gdb: separate debug files
objcopy --add-gnu-debuglink, ...
0
votes
1answer
46 views
GDB Scripting Issue
So, I've been doing a lot of assembly work lately and I've found it tedious having to keep typing x/d $eax, x/d $ecx, x/t ... and so on. I edited my .gdbinit to have:
define showall
printf "Value:\n"
...
0
votes
1answer
23 views
gdb print NSString debugging
I'm using static analysis to verify an OSX program that I have developed personally. using GDB I have found the memory address of a NSString. Is there any way of parsing it as a NSString and read its ...
14
votes
2answers
227 views
How do I get the value and type of the current exception in C++ using gdb?
gdb allows one to catch exceptions when they're thrown, and when they're caught. But sometimes the line an exception is thrown has no symbols, or a breakpoint is triggered during exception handling. ...
0
votes
1answer
43 views
debug: Obtain a list of all instance variables of an object (unknown type)
Is there any method to obtain (via debug) a list of all instance variables of an unknown object in Objective-c?
I use lldb for debug, but I admit that I don't know it very well.
Obviously I can't ...
0
votes
1answer
47 views
Why couldn't I intercept segfault signal of a child process?
I'm trying to monitor the child process for segment fault errors, but that doesn't work.
I always receive ABRT signal.
I see gdb can catch segment fault, so what's wrong with my code?
pid_t ...
0
votes
1answer
31 views
Seperate Working Directory for GDB and Debugged Process
In the project I am working on, I use gdb to debug - I would like to be able to call make from gdb - but I can't because that would mean the working directory would be incorrect. Here is my directory ...
-1
votes
1answer
67 views
Is the GDB debugger easy and quick to master? [closed]
I need to debug my program that's several files.
I've been using terminal and vi to write all 80+ files. And other than somewhat basic unix commands in my opinion, I don't really know how to do much ...
4
votes
1answer
54 views
How can I examine in gdb a variable that has the same name as its type
I'm debugging an existing C library with gdb 7.4
I'm trying to examine a variable which, unfortunately, was declared with the same name as its type:
extern const enum rtx_class ...
2
votes
2answers
75 views
When debugging a C++ program with GDB the “next” command seems to skip source lines
When I debug my C++ program, I set a breakpoint on the main function. When the program starts running, it seems to have skipped several lines of source before the line at which it stops. What's the ...
0
votes
1answer
23 views
how to fix the dbx “MT support is disabled” error?
I loaded a core file of a program which is multi-threaded. I cannot list threads with below command.
(dbx) threads
dbx: MT support is disabled
(dbx)
However, I can list LWPs with lwps. On ...
0
votes
0answers
50 views
Find out where UNIX daemon gets stuck?
Years ago, I wrote a UNIX daemon (wsqueryd) that puts itself in the
background:
pid_t pid;
pid = fork();
if (pid < 0)
misc_log_error_and_exit("Could not fork parent process");
if (pid > 0) ...
0
votes
1answer
32 views
Debugging Fortran with gdb: Display names of all variables, but not their contents
I'm debugging a Fortran program with gdb, and when, at a breakpoint, I try to print an element of a 2-dimensional array with p/d cs(ii,inti+1) I get the message No symbol cs in current context. ...
0
votes
1answer
44 views
Why this core dumped is generated
I am writing a C program whose relevant details are below:
void calculate(struct iso_matrix *iso_matrix) {
struct graphlet *graphlet = init_graphlet(GL_SIZE);
int *index_map = (int ...
0
votes
1answer
20 views
GDB autoinitialising variables
I am trying to do an example about memory management in C++. I want to show people that there always is something standing in the memory (even if you do not write anything in it)
My problem is that ...
1
vote
1answer
17 views
why do we need to pass the program path along with the core file to debugger?
Is it relevant that the program is exactly the same build as the one which crashed to generate the core file?
dbx <program path> <core path>
0
votes
0answers
69 views
Qt - breakpoints don't work + “Unexpected GDB Exit”
I'm using Qt Creator 2.7.0 based on QT 4.8.4 (32 bit) with Ming 4.4 on windows. My Qt projects run without any problem in Release and Debug mode. However, when I try to debug, breakpoints don't work ...
2
votes
1answer
20 views
Setting an environment variable to a space in GDB
I need to set an environment variable to a single space in GDB, but when I tried
set env VAR ' '
GDB actually sets VAR to the 3-character string, namely quote, space and then a quote. Is there a ...
4
votes
1answer
147 views
Understanding some C++ coding practice [closed]
I am currently trying to understand how the following code (http://pastebin.com/zTHUrmyx) works, my approach is currently compiling the software in debug and using gdb to step through the code.
...
1
vote
2answers
37 views
Embedding GDB breakpoints
I am writing an application that recovers from an error by throwing an exception.
However when debugging I would like my debugger to stop at the point of my error before the exception is thrown. Is ...
0
votes
1answer
81 views
How can I make gdb print unprintable characters of a string in hex instead of octal while preserving the ascii characters in ascii form?
Suppose I have a buffer buf whose c string representation is
char* buf = "Hello World \x1c"
When I print this buf in gdb using the command p buf, I get the following
$1 = "Hello World \034"
Is ...
1
vote
1answer
56 views
GDB is not stopping at first machine code instruction
I played with GDB a little bit today and wanted to debug an application I don't have symbol files for. I'm a novice concerning GDB in general, but as far as I understood it is necessary to debug on ...
1
vote
1answer
39 views
Xcode: how to set a break point inside one line of code?
Say I have a piece of code like this:
x -= func();
Is there any way I can know the result of func() without adding a temp variable or inspecting x? Also, func() is in a binary library so I don't ...
-2
votes
1answer
53 views
GDB With a coredump file in linux
I just got a core-dump file in linux with
ulimit -c unlimited
how can I attach gdb with it
I need to give command line arguments with it.
sample executation:
./my_prog arg
Help me to get into ...
0
votes
1answer
52 views
-g option ignored when building c++ programs with “make”
Unfortunately I can't remember when this first occurred, but recently I've noticed a strange bug when I run "make" to build a program.
The I have the following makefile:
SOURCE = Foo.cpp \
...
0
votes
0answers
34 views
how to set the breakPoint on gdb?
I want to set a bp on [CFileTools pathExistsWithCreate:] and the argument .
when I set below,I get the error message.
can't use isEqualToString on the condition?
how to solve the problem? thank ...
2
votes
1answer
57 views
How to grep on gdb print
Is there a way to grep on the output of print command in gdb? In my case, I am debugging a core dump using gdb and the object I am debugging contains hell lots of elements. I am finding it difficult ...
1
vote
1answer
33 views
mpirun OpenFOAM parallel app in gdb
I'm trying to step through an OpenFOAM application (in this case, icoFoam, but this question is in general for any OpenFOAM app).
I'd like to use gdb to step through an analysis running in parallel ...
0
votes
1answer
35 views
Debug symbols for LLVM libraries?
I'm using the Ubuntu packages to develop against the LLVM libraries. Here are the packages I have installed:
libllvm3.1
llvm-3.1
llvm-3.1-dev
llvm-3.1-runtime
llvm-3.1-source
'llvm-3.1-source' ...
0
votes
1answer
13 views
gdb taking the executable in the wrong directory?
I can't figure out what the issue is here. I am in a directory:
pwd
/afs/naf.desy.de/user/e/eron/scratch/UserCode/devRA4b/UserCode/DesySusy/ra4b_2012
where I have an executable called ...
0
votes
1answer
25 views
GNU GDB: customize watchpoint output format
Every time a watchpoint is modified GDB will print the old value and the new value. However, sometimes I don't want to print the value in the default decimal integer format: for instance, if I'm ...
1
vote
0answers
80 views
Difference between gdb, valgrind, strace, ltrace and apport [closed]
I'm looking for the difference between the following debugging tools.
What are those?
E: On the off chance that somebody stumbles in here and was wondering about the same thing the "differences" are ...
-1
votes
2answers
98 views
Using valgrind on a Mac [closed]
I have a piece of c++ code about 600 lines long which currently doesn't run due to seg fault. I have run gdb but it isn't really helping me as I don't know what I am looking for. I have also run ...
0
votes
2answers
73 views
Why can't I insert a breakpoint here (I might add all my friends can, and I see no other way to solve this)
(gdb) list 1,20
1 int swap_n_add(int *xp, int *yp)
2 {
3 int x = *xp;
4 int y = *yp;
5
6 *xp = y;
7 *yp = x;
8 return x + y;
9 }
10
11 int main() {
12 ...
3
votes
1answer
65 views
If I have a C function and I'm debugging it with gdb, how do I find the return value of a function?
I have an assignment that asks me to find the return value of main though register inspection (we're learning gdb), how would I go about doing that?
1
vote
1answer
26 views
debugger break when variable is set
Is there any way to cause gdb to pause when a specific variable is set to a specific value? For example, if there is a variable x in a certain scope, and it gets set to 4 at some point in the ...
0
votes
1answer
53 views
CodeBlocks Breakpoints Ignoring Scope
I set a breakpoint inside a conditional statement that checks for a certain value of a custom datatype. The game will break, but the line it breaks on is completely outside of my breakpoint's scope. ...
0
votes
2answers
46 views
Debugging kext with gdb: deadlock
I have I/O Kit driver: virtual ethernet device. After some period of work OS hangs, so looks like I have some deadlock in my driver.
I've done next steps:
- connect two macbooks via FireWire
- set ...
0
votes
0answers
55 views
how do i continue on breakpoint in gdb automatically
I'm debugging my linux kernel module. It causes deadlock and i'm trying to figure out how. I'm using vmware + gdb. The idea is to hook the function and log backtrace into the file. I'm trying the ...
1
vote
0answers
40 views
ios modify registers to call function
i connect to iphone's debugserver and able to send GDB Serial Protocol packets. I can set breakpoint and wait until it reached. When it did i want to call objc_msgSend with known parameters, get it's ...
3
votes
2answers
145 views
Gcc 4.8 DWARF4 vs DWARF2
GCC 4.8 supports DWARF4. I'm wondering what is the difference between DWARF4 and DWARF2 from user point of view.
Lets look at it from GDB point of view. Is there any difference for users when you ...
4
votes
3answers
82 views
working effectively with gdb
Whenever possible, I usually tend to learn keyboard shortcuts. It's really amazing to see an experienced coder works with VI effectively.
I've been trying for sometime switching to debugging with gdb, ...



