0
votes
0answers
32 views

program only in valgrind run without stoppage

My program (it is an smtp server program, tested by jmeter) run without any problem when it is run by valgrind. But failed (got SIGABRT) finally, if it is running without valgrind or run within 'gdb' ...
0
votes
0answers
18 views

How to call iconv() multiple times on different strings?

I want to convert multiple strings using iconv() function. I have this code: size_t e_len = 150; size_t c_len = 1000; char eurl[150] = "aaa"; char edomain[150] ="bbb"; char ...
0
votes
1answer
30 views

Finding start of main function with ptrace

I have a file scope kernel extension that informs a daemon when an application is launched. The daemon is required to pause the launched application at the beginning of its first instruction in ...
0
votes
2answers
80 views

Unable to find the runtime error [closed]

I have taken an application from my teammate in order to replace some part of it with some new features. The application consists of several blocks. Basically, one block allows user to draw some area ...
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 ...
0
votes
2answers
56 views

Debugging beginner C crash, looking for alternate logic with bug found

I was doing a study on a program which is working (mostly) and... I ran into a bug that causes a complete crash in the system at the finish line. After print-screening to pinpoint the leak, I'm ...
2
votes
1answer
73 views

Why does my fscanf not read?

I have to write a program that finds a path of maximum value in a triangular maze of integer numbers. This program should calculate the highest sum of numbers passed on a route that starts at the ...
-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 ...
0
votes
1answer
36 views

How to change log level of dmesg programmatically?

I want to change the mask priority of dmesg by which i want to print only those messages whose priority is highest. So how to change these priority programmatically? Like if printk priority is ...
-2
votes
2answers
58 views

Debugging! Program won't run

I am trying to run a c program which will wait for me to hit a key on a 4x4 keypad and then display the number I have hit. The program I have bit runs but ends just as soon as I start it and I can't ...
0
votes
2answers
55 views

How to figure performance of small expressions?

I want to figure performance of small expressions,to I decide what to use. Consider the below code. Several recursivee calls to it may happen. void foo(void) { i++; if(etc(ch)) { //.. ...
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
0answers
47 views

Finding PID of a process which is being debugged with eclipse

I want to find a PID of a process which is being debugged with eclipse, while it is being debugged. I want to use some c plus plus code that does not have any relation with the debugged process. For ...
3
votes
1answer
77 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 ...
1
vote
0answers
34 views

Debugging *** glibc detected *** python: realloc(): invalid next size without Valgrind

I'm running a server-script in Python, and I'm getting a *** glibc detected *** python: realloc(): invalid next size error every once in a while. I can't debug it with Valgrind, as it won't let me run ...
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 ...
1
vote
1answer
39 views

How to start running with MSVC

Starting from the beginning !! can anybody here help me how to start running C project with MSVC ? I have all the source files under: src/ directory all the header files under: inc/ directory ...
0
votes
0answers
51 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
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
0answers
31 views

Utilising debug symbols without src code

Is it possible to debug in any useful way a shared library that has been built with debug symbols enabled but to which one doesn't have access to the src code? I have a situation where I have access ...
0
votes
1answer
36 views

2D array referencing whole index, not individual cell in C

I can't seem to figure out what my problem is. I'm writing a 2D random walk simulation and my thought is to use a 2D array to simulate the grid it's on. However, in my code, when I try to reference ...
2
votes
2answers
65 views

Intro to C: Declaration of Functions

I want to declare a function for use in my code in ANSI C. Am I allowed to define the function after using it in main()? For example an absolute value function that I wrote: can anyone tell me if it's ...
2
votes
3answers
84 views

Intro to C: Addition and Looping

I'm continuing on my quest to mastery C and I'm currently working on an exercise to have my rudimentary calculator continuously to prompt me for two operands and a operator. If the operator is not a ...
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 ...
-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 ...
1
vote
0answers
74 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
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
votes
4answers
74 views

Visual studio 2012 - debugging [closed]

I very often hear that I should debug my code before asking questions. It seems to me that it's some useful functionality. I tried to google something, but all I found were some strange console ...
0
votes
2answers
96 views

Why do some C programs work in debug but not in release?

Ok, So I am stuck here. I have code for a program that systematically executes people standing in a circle based off an algorithm, but I am having a problem with it crashing in release mode. My code ...
0
votes
2answers
36 views

monitoring static variable inside a function in eclipse CDT

In c, when a variable is defined static within a function, the value of the variable is retained all the time. So probably, it's stored in the bss or data section. However, in Eclipse CDT debugging, ...
0
votes
1answer
39 views

Having trouble figuring out this segmentation fault

I'm sure the mistake is obvious, but I sure am having trouble finding it. Basically I am trying to make a chessboard via 2D array. I am testing its functionality via 8 queens test... it is not ...
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
67 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?
0
votes
2answers
41 views

Weird Output with first case integer

Here are two functions below that compile perfectly but I seem to be getting a weird error with the very first inputted integer. I have tried debugging in GDB but when it's only the first inputted ...
1
vote
3answers
95 views

debugging fopen in C

Im new to C and trying to read a file using the fopen command as follows: FILE *f = fopen (argv[1], "rb" ); if(!f) { printf("ERROR! Unable to open file \n"); ...
0
votes
3answers
64 views

How to debug C project by putting any tool/library or other

I have a project, which has number of files, and a makefile. By using make command. I make a executable file, and then put in /usr/local/bin. and that is act as a utility. Till now everything is ...
1
vote
0answers
41 views

Debugging json_t object with GDB

I have a application in C programming which uses jansson library(json library written in C). I'm trying to view value of json_t object in gdb but it just prints (gdb) p jmsg $20 = (json_t *) ...
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
2answers
148 views

How do I find out what writes to an address using C++?

I have an address that get's writen to 1000x per second by 300 different instructions. How can I use c++ to find out the last instruction to write to an address? I already have made it so it alerts ...
9
votes
5answers
279 views

ARM-Kernel Testing Module

I have a two-core ARM embedded system device that is running a RTOS/kernel that I wrote. I wish to write an internal diagnostics tool/module to simulate I/O to the kernel for testing purposes. ...
0
votes
1answer
21 views

Tools/Tips to determine Error Location in configure stage - PHP Extension Coding

I was trying to code a PHP Extension in C After phpize , I did ./configure and got this error checking Whether extensionB is enabled... yes, shared ./configure: line 4171: syntax error near ...
0
votes
0answers
24 views

webkit-gtk crash in pango_color_parse

I've been having a lot of trouble with crashes in my webkit-gtk web browser that I have written. I have provided the backtrace below from one such crash, but I have the sneaking suspicion that this ...
1
vote
0answers
124 views

GDB does not display the value of global variables

I have three files, TDS.c, TDS.h, ExtraRoutines.c which are compiled together as a shared library. TDS.h is the header file and defines the variables. ExtraRoutines.c is responsible for memory ...
0
votes
1answer
34 views

Prints one call after

I am trying to call a function, which appeared not to be working. So i added a few printf() and this is the result. if (rc > 0) { bzero(buffer,256); n = ...
0
votes
2answers
74 views

GDB: How to find 'passphrase' at $eax when address out of bounds?

I have the output here when I disas in GDB the function that pertains to comparing the program input to a 'passphrase'. I know the real 'passphrase' is in $eax, but when I try to examine $eax, I get ...
1
vote
1answer
49 views

GDB stack output not showing full hex address?

my GDB output for the stack looks like this 0xffffd688: 0x98 0xd6 0xff 0xff 0x75 0x84 0x04 0x08 I'd like it to look more like this 0xbffff3b0: 0xbffff620 0xbffff3c9 ...
0
votes
1answer
47 views

Debugging Android SDK libraries

I would now like a way to step through the SDK libraries (both C and Java code) to pinpoint exactly what is going on. So far, I have installed the NDK and gotten GDB up and running. I am able to ...
11
votes
4answers
296 views

Are there any compiler / preprocesser tricks to debug print an enum's name?

I often find myself writing helper debugger methods that return a printable string, given some enum value. The reason for this is when you typically log an enum, all you get is a number really. I hate ...
1
vote
1answer
108 views

GDB remote debugging with valgrind

If I remote debug using gdb I connect to the gdbserver using target remote host:2345 If I debug memory errors with valgrind and gdb (to break on invalid memory access) I use target remote | vgdb ...

1 2 3 4 5 14