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
2answers
40 views
Assembly MOV doesn't work, Debug for Linux and INT code list
I have a problem here...
I'm using debug (in cmd/ms-dos) to learn some things and to peforme some commands... I set AX to 1234 and DX to ABCD.
So, I did '-a 100' to register a instruction, I did: mov ...
0
votes
0answers
27 views
Lazarus: How do I resolve Debbuger GDB error?
After updating and preparing my program for the latest Lazarus compiler, I am finally test running it. However, my program won't even start but raise the following compiler error.
What do I do to ...
0
votes
1answer
37 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
56 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 ...
1
vote
1answer
33 views
Linux kernel hardware break points
I want to build a simple linux kernel debugger for the x86 architecture. I first want it to set break points. I was wondering if there is a kernel api for configuring the debugger registers and if so ...
3
votes
1answer
76 views
Dump debug steps in C, Linux
Is it possible to dump the entire program steps to a file? I don't mean the value of the variables, I mean the jumping from on instruction to another, and if it's possible to use both, steps and the ...
0
votes
1answer
45 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
103 views
How to debug a Linux kernel that freezes during boot?
I have a legacy device with a binary Linux 2.6.18 kernel that boots normally to its rootfs. However, if I try to compile this kernel from the source, the resulting kernel binary will freeze during the ...
0
votes
1answer
30 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
65 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 ...
0
votes
1answer
40 views
“No impact” stacktrace across all threads of a running process?
How can I get stacktraces across all threads of an already running process, on Linux x64, in a way that is the least invasive and impacting as possible?
Things I've thought of till now:
gdb - I'm ...
0
votes
1answer
51 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
34 views
How to step-debug assembly binaries with no symbols or sections?
Consider the following NASM code:
BITS 32
org 0x08048000
ehdr: ; Elf32_Ehdr
db 0x7F, "ELF", 1, 1, 1, 0 ...
1
vote
0answers
71 views
How can I optimise core dump file size?
I want to generate core dump files for my big C application on my embedded system running Linux. If I set
ulimit -c unlimited
I get big dump files around 100Mb. This is too much in my case because ...
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
2answers
106 views
Slow load time of bash in cygwin
At the moment bash takes about 2 seconds to load. I have ran bash with -x flag and I am seeing the output and it seems as though PATH is being loaded many times in cygwin. The funny thing is I use the ...
2
votes
2answers
88 views
How can I debug an embedded process?
I have a problem with debugging a process on arm + Linux platform:
This is a daemon process working with CAPWAP protocol, so it continuously communicates with another remote process. When it crashes ...
2
votes
1answer
63 views
Can Zynq-7000 be singled steped [closed]
I want to use linux for the ARM core of Zynq-7000. But have a quesion on:
Can I single step debug the kernel from the IDE instead of just printk? Does the hard ARM core allows single step into the ...
0
votes
2answers
54 views
Pause Code Execution in Linux Kernel
Is there a way to temporarily pause code execution (for debugging purposes) while working in the Linux kernel, like a getchar() or a system("PAUSE") type operation?
0
votes
1answer
84 views
debug symbol file for linux kernel
I want to debug both my QEMU source code and Linux kernel source code(ported to a particular board) when trying to boot the kernel image on QEMU.
So i start something like this :
Step 1 : $gdb ...
3
votes
4answers
76 views
Specially debugging line by line
I have a script written in Pascal. I would to debug it in this way: stop at every line, dump values of all variables in memory and go to the next line. Is it possible to do it with gdb or some other ...
1
vote
0answers
32 views
How to generate error log to fix crashes
Many applications generate an error log when they crash, which makes it easy to find the bug. To achieve the same, I used Linux signal handling to catch segmentation faults. I used stacktrace.h to ...
1
vote
0answers
185 views
Can't step in GDB past Thumb/ARM transition, ARM breakpoints are not set
I'm debugging a program with no symbols on Android 1.6 emulator. There's a crash (signal) during loading of a SO library, I'm trying to track it down. The crash is somewhere in the library startup ...
0
votes
2answers
120 views
Gradually increasing cpu usage without memory increase. Ideas?
So I have an app written in C++, running on Ubuntu 12.04, that initially reads some data from the db, then watches a directory for files. When they show up, it processes them, then writes some data ...
3
votes
1answer
50 views
gdb runs in the context of another process?
I just want to understand how gdb (or anyother debugger) can modify memory in the address space of another process?
we have a running process, we attach to it
attach pid
from here on we can ...
0
votes
1answer
66 views
Starting ddd with remote gdbserver
I'm debugging a program that runs on a remote target using ddd ( the remote gdbserver is running on localhost over port 1234 for example, but still acts as remote).
I know you can connect to the ...
1
vote
3answers
92 views
my django project static files can not be load with option debug=false
It is very strange that my django website (setup on a linux server with django 1.3) can be visit correctly with DEBUG = True. But when I changed the option to DEBUG = False the static content won't ...
0
votes
1answer
85 views
Loading modules through GDB
I have used GDB in linux to debug C programs effortlessly in user space. Now, I am working on kernel space modules and I thought GDB would work the same way. However, the run command does not work for ...
0
votes
1answer
62 views
“No source available for SSL_CTX_load_verify_locations()” using OpenSSL
I'm trying to make a secure connection with SSL. I downloaded the source code from the IBM site and run the withssl file.
I receive an Error Message while debugging:
No source available for ...
2
votes
0answers
161 views
Gdb function entry point not known
I am using a vendor API whose sources I have, I can set breakpoints and they hit well, but if I try to call a function ( by its name ) in gdb, it says "Entry point address is not known.", what does it ...
1
vote
2answers
151 views
How do I pass a command line argument while starting up GDB in Linux?
I have to debug a program that has errors in it as part of my assignment. However, I must first pass command line arguments in order to solve this problem.
I do:
gdb -tui InsertionSortWithErrors
...
4
votes
0answers
471 views
GDB core dump: Find executable by build-id
Is it possible to make gdb automatically find the corresponding executable file? I have extracted the debug symbols and put them in the /usr/lib/debug/.build-id/ directory. When I start gdb with gdb ...
13
votes
2answers
301 views
Is it possible to debug mex code with Eclipse?
I am trying to write some mex code but it is painful to debug it on the console with gbd. Is it possible to use Eclipse or the GUI of Matlab? If these are not feasible methods, what is the best way of ...
4
votes
4answers
5k views
Android Debug Bridge (adb) device - no permissions
I have a problem connecting HTC Wildfire A3333 in debugging mode with my Fedora Linux 17. Adb says:
./adb devices
List of devices attached
???????????? no permissions
my udev rules (first rule ...
1
vote
1answer
62 views
How to deterimine if debugging in Qt
I am working with Linux and Qt. I want to compile certain code only if we are debugging. In Windows I am used to doing the following:
#ifdef _DEBUG
..code...
#endif
This however does not work. I am ...
0
votes
3answers
76 views
How to check if a process has filled the STDOUT or STDERR buffer
Given a process on a Linux machine which appears to be stuck, how can I tell if it is stuck due to the STDOUT or STDERR buffer being full?
In my particular case, I have a process which is performing ...
-2
votes
1answer
133 views
Strength of anti-debugging technique [closed]
Having used to debug with tools like gdb etc, I have little knowledge about they get implemented. I am trying to implement an anti debugging technique in my program but having very little knowledge ...
0
votes
1answer
143 views
Detach a linux process from pseudo-tty, but keep the tty running?
I want to debug a console linux application with 2 xterm windows: one window used for gdb and another used for the application (e.g. mc).
What I do now is run 'tty && sleep 1024d' in the ...
1
vote
2answers
115 views
Android hardware debugging
I've bought a tablet recently. It's a SysTrade's Plug 10.1 (Chinese product of local company). It features a reasonable CPU and quite nice GPU, so I thought it would be great to hardware debug my ...
2
votes
1answer
67 views
How to convert a address to specific type variable in GDB?
I got an address such as 0x7fc9e401a02a in my log file, and I know that this address is a pointer of type Connection.
Then I start GDB, what I wanna know is: how to convert this address to a ...
0
votes
1answer
66 views
how to exit the wh mode in gdb
The 'wh' mode in gdb is not working very well for me. When I dump some data the command window and the program text window gets overlapped and it looks quite messy. I want to exit the wh mode without ...
2
votes
0answers
132 views
How to debug cinnamon applet?
I wish to write a cinnamon applet. These are based in JavaScript. The code I wish to write changes services (turning them on and off, similar to WebDeveloperMenuApplet). I don't expect the ...
0
votes
2answers
374 views
KGDB remote debugging error
I am trying to debug the Linux kernel using kgdb. I am using qemu as target machine. Ubuntu 12.04 is my host OS. I tried this command
cyborg@skynet:~$ qemu-system-arm -M versatilepb -m 128M -kernel ...
25
votes
1answer
428 views
x64 memset core, is passed buffer address truncated?
1. Problem Background
Recently a core dump occurred on one of our on-line search server. The core happens in memset() due to the attempt to write to an invalid address, and hence received the SIGSEGV ...
0
votes
0answers
43 views
Stop Linux Clock to debug program that is time specific?
First, let me preface this by stating that this is based on a homework assignment. As part of the assignment, I'm trying to examine/debug a program to determine what it does. I found one part of the ...
1
vote
2answers
47 views
Launch gdb automatically on Linux
Is there a way to automatically start a process under gdb on Linux? An equivalent of setting the Image File Execution Options on Windows.
I am trying to debug start-up phase of a process that is ...
1
vote
2answers
352 views
How to detect obvious errors in PHP code (with Sublime Text 2)? [duplicate]
Possible Duplicate:
Is there a static code analyzer [like Lint] for PHP files?
I'm writing a PHP function library and I'm surprised that PHP linter would totally ignore any obvious error in ...
0
votes
1answer
35 views
Tracking php process on framework
I have a php framework is running on linux machine basicly every requests redirect to index.php by .htaccess
Options +FollowSymLinks
IndexIgnore */*
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} ...
0
votes
0answers
34 views
define a script to launch a specific debug configuration from a linux shell [closed]
Because I always need to switch from a machine, to a remote server I wanted to make quickest the process to launch Eclipse and then to launch the specific debug configuration Java app related.
For ...

