valgrind is a dynamic analysis tool for Linux systems. It can be used for profiling, finding memory leaks, race conditions, and threading errors.
1
vote
1answer
16 views
Callgrind does not see source in dynamically loaded SO
I'm attempting to run KCacheGrind on some results of callgrind. Basically the codebase is a plugin container that launches a shared object to run a specific function. Upon using Callgrind to profile ...
1
vote
0answers
66 views
“Conditional jump or move depends on uninitialised value” in double linked list implementation
Valgrind states me two errors that I can not solve.
I get a "Conditional jump or move depends on uninitialised value" error message in the following function unplug_set. Is it because of the NULL ...
0
votes
1answer
50 views
Conditional jump or move depends on uninitialised value(s)
the first error in the Valgrind:
/media/d2bfa67b-a3e7-4dde-9f3a-119260e3a29c/workspace/000-back-office/var/root_data/global_product_id/global_product_id_cut.root
==14840== Conditional jump or move ...
1
vote
1answer
38 views
memory deallocation doubly linked list C++
I have created my own implementation of a doubly linked list for learning purposes. I am doing some testing to make sure the memory is being deallocated correctly. In main.cpp, I have the following:
...
2
votes
1answer
45 views
Memory Leaks in GTK hello_world program
So... I'm trying to eliminate some memory leaks from my GTK+ 3 program. I though it would be a good idea to look back at some simple examples to see if there is some cleanup stuff I'm forgetting, but ...
0
votes
0answers
30 views
Why Valgrind is killed after start?
I cross-compiled the Valgrind on SunOS platform to Linux x64 platform using following commands:
./configure CC=/vob/windriver-m2/sysroots/toolchain/gcc CXX=/vob/windriver-
...
2
votes
4answers
88 views
longest common subsequence: why is this wrong?
int lcs(char * A, char * B)
{
int m = strlen(A);
int n = strlen(B);
int *X = malloc(m * sizeof(int));
int *Y = malloc(n * sizeof(int));
int i;
int j;
for (i = m; i >= 0; i--)
{
...
0
votes
0answers
16 views
Calling Valgrind programatically (execing) produces no profiling data
My app has a process A which fork/execs another process B, and the child B then loads a shared library. I want to run Valgrind only on the child process B. Process A also ptrace's process B.
I tried ...
0
votes
0answers
27 views
Different outputs in Valgrind across multiple machines
In machine A for some reason I get a bunch of:
==21855== Invalid read of size 4
==21855== at 0x422A26F: ??? (in /lib/i686/cmov/libc-2.11.3.so)
==21855== by 0x4216E2F: vsnprintf (in ...
0
votes
2answers
57 views
Memory leak on returning pointer
I am facing a memory leak condition in the following functions.
char * readdatafromfile(unsigned pageNumber) {
char *buff = (char*) malloc(sizeof(char) * pagesize);
lseek(fd, pagesize * ...
2
votes
1answer
63 views
Strange error while using valgrind? a bug maybe?
I am developing a C++ program and when finished, I wanted to check for memory leaks, but I have found an strange error with valgrind:
==9106== Invalid free() / delete / delete[] / realloc()
...
1
vote
0answers
54 views
TBB possible memory leak
Test program:
#include <tbb/parallel_invoke.h>
int main(void)
{
tbb::parallel_invoke([]{},[]{});
return 0;
}
Compiled using g++ -std=c++11 tmp.cpp -ltbb
Checked with
valgrind ...
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
1answer
30 views
Valgrind multiple “invalid write/read of size 1” errors
My program reads in people from a file and saves their information to a Person structure that looks like this:
struct person
{
char *fname;
char *lname;
int id;
};
typedef struct person ...
-3
votes
4answers
50 views
C : Double free or corruption, can't find error
This error is making me mad...
Valgrinding the program shows that the delete[] in DataPackage::~DataPackage (line 40) creates the problem. But if I remove it, the program will leak.
So, how to repair ...
0
votes
1answer
21 views
valgrind give error when printing the second line to file
I'm using valgrind to find faults in my code. The command I use is
valgrind --leak-check=yes ./a.out
and I compile the code with -g code alone. I get many errors pointing to a single write line ...
0
votes
2answers
65 views
C programming - matrix-based function not working
In a program I'm currently writing, I have this function, which reads the input and stores each line in an entry of an array of characters. n is a number previously given in the input, and represents ...
0
votes
0answers
25 views
Global application slow down after freeing memory while using Valgrind
I'm having an issue with my application that I only observe while I use Valgrind.
My program involves a large simulation. When I unload the simulation portion of the program, while monitoring for ...
0
votes
3answers
89 views
Is there a data race in this code?
In this page, this sample code is written to explain how to use notify_one:
#include <iostream>
#include <condition_variable>
#include <thread>
#include <chrono>
...
0
votes
0answers
17 views
How to make LinuxTools valgrind memcheck to break on an error when using with eclipse?
I really like the LinuxTools memcheck tool. The ability to run valgrind from inside eclipse is a good thing. However I would really like to have it stop when it encountered an error. I.e. something ...
3
votes
2answers
104 views
Initializing array of parameterized type in c++
I'm working on a generic type in which i need an stack allocated array of the parameter type. It is supposed to be with as little overhead as possible. It was part of an exam, but now it has sparked ...
1
vote
2answers
131 views
Android valgrind build fails
Hello I'm trying to build valgrind for android-arm. On Linux Mint 13 it fails with:
$ make
echo "# This is a generated file, composed of the following suppression rules:" > default.supp
echo "# " ...
0
votes
0answers
21 views
How do I get rbenv to keep debugging symbols?
I installed the development version of Ruby 2 via rbenv on Mac OS X v10.8.3, and am using it to compile a gem I'm working on. I have a memory problem I want to debug. Unfortunately, whenever I run ...
0
votes
2answers
13 views
2 dl-hack3-cond-1 suppressed errors shown from valgrind -v
I am getting two suppressed dl-hack3-cond-1 errors from valgrind when running valgrind -v. I use calloc in my code but I have made sure to free everything and set to NULL. Also made sure to typecast ...
0
votes
1answer
35 views
C - Null pointer issue on AVL tree rotation implementation
I'm implementing an AVL tree in C. I've posted my tree rotations below, as well as the valgrind errors I get when I try to test them.
Why am I getting these errors? I understand that the valgrind ...
1
vote
3answers
27 views
Is there a way to stop Valgrind on the first error it finds?
If errors are found in valgrind's output, I want to generate the output using the debug version of the program. However, valgrinding thousands of runs in debug is way too time-intensive.
So what I ...
0
votes
1answer
31 views
Unstable cython extension won't crash when launched with valgrind
I made a quite complex python extension using Cython. Which was working fine until I get some strange memory behaviors, of the form :
*** glibc detected *** /usr/bin/python2.7: double free or ...
0
votes
1answer
53 views
GDB reset configuration
EDIT:
I tried to re-install gdb with sudo apt-get autoremove gdb and then sudo apt-get install gdb. Still doesn't resolve issue.
Original problem:
So recently, meaning roughly 3 hours ago, I ...
-2
votes
1answer
54 views
Why do i get mismatched error ? (C )
I have this code, but can't find the source of the error.I would like to store multiple names in the char array, and i have to use char type. I made this, but something is wrong with this.
#include ...
0
votes
2answers
69 views
Valgrind complains about a memory leak but I'm calling new and delete
I have used pointers to create an array and then wrote a delete procedure in the destructor
class cBuffer{
private:
struct entry {
uint64_t key;
uint64_t pc;
};
entry *en;
...
-3
votes
0answers
47 views
How could i correctly delete a char ** array? [closed]
My code:
CTudMunka.cpp:
CEloadas.cpp:
main.cpp: (http)://pastebin.com/4wXRpiVX
After i run, i get errors.
=====Backtrace======
=====Memorymap======
Aborted(core dump)
Valgrind says: 5 allocs ...
0
votes
2answers
50 views
What does this Valgrind output mean?
So I'm writing this C++ program and I've narrowed down my memory leaks by quite a bit thank to valgrind. But I still have a large chunk of leaks to go. But my valgrind output isn't making any sense:
...
0
votes
1answer
25 views
Understanding “Invalid read of size n”
I have read a couple of threads about this Valgrind error, most of them give localised responses. I would like to know exactly what is wrong so that I can debug these errors in the future myself.
I ...
0
votes
1answer
67 views
Valgrind results of a “segmentation fault” program
My program (./a.out) encountered with a segmentation fault, so I use Valgrind to check if I can find at which line of code the program corrupts. And I got the following output, but I cannot understand ...
6
votes
2answers
245 views
Valgrind shows memory leak on empty program on Mac OSX 10.8
Valgrind installed using brew.
#include <stdio.h>
#include <stdlib.h>
int main()
{
return 0;
}
gcc -g -o hello hello.c
valgrind --tool=memcheck --leak-check=yes ./hello
-1
votes
0answers
67 views
invalid delete boost shared_ptr in std::map with unit_test_framework
I have looked for an answer everywhere, but I cannot manage to understand what is going on...
I'm building a shared library (.so) with 2 files:
common_database.h:
#ifndef COMMON_DATABASE_H_
#define ...
1
vote
0answers
57 views
Valgrind reports lots of errors when running opengl program on ATI - should I worry?
I have a very complex OpenGL application running on a embedded device with ATI graphical chip, running a RT linux. The application's part are tested with unit tests. They all pass and no memory leak ...
0
votes
2answers
73 views
sYSMALLOc assertion failed when using “new” keyword
EDIT: For clarity's sake, I'll leave the question as it is. The
problem seems to be that the Kameleon class uses boost, and since
my own code also uses it there are probably conflicting ...
0
votes
1answer
38 views
Valgrind - blocks still reachable due to?
I' trying to figure out what's causing Valgrind to warn about some 'still reachable' blocks. I've reviewed my code and can't find any free() missing. I tried running with --leak-check=yes ...
0
votes
2answers
114 views
Segfault in c++ program; Incomprehensible valgrind output
I'm currently writing my first big c++-project but encountered a segmentation fault when running the program. I already tried to debug it using valgrind, but so far without success.
Since the program ...
-1
votes
0answers
32 views
Signal 11 using libSOIL
Whenever I call the 'loadTexture()' method, I receive signal 11. Texture.h:
#ifndef TEXTURE_H_
#define TEXTURE_H_
#include <SOIL/SOIL.h>
#include <iostream>
#include <string>
...
0
votes
3answers
61 views
Initialization Valgrind Error in C
This function is part of a hash table. I am passing a hash-list to search through and a key.
int HashSearch (Hash_list h, char* key)
{
struct ent *x = (struct ent *)malloc(10*sizeof(struct ...
3
votes
0answers
114 views
MPI and Valgrind not showing line numbers
I've written a large program and I'm having a really hard time tracking down a segmentation fault. I posted a question but I didn't have enough information to go on (see link below - and if you do, ...
0
votes
0answers
34 views
Valgrind with sfml
I am completely new to the use of Valgrind. Currently I have compiled an exe for the program to test on; however, the test brings up over 250k errors. This is the basic project made with a new sfml ...
1
vote
0answers
53 views
Valgrind memoryleak on string.append()? [duplicate]
thats the first time i'am programming in C++ and using Valgrind to find memoryleaks etc.
I get errors I can'not understand. Can anyone help me please?
I should say that its possible that diffrent ...
0
votes
1answer
64 views
Valgrind error with std::cin
Here is my code:
std::string getword()
{
std::string temp;
std::cin >> temp;
return temp;
}
Valgrind throws an error on the line std::cin >> temp.
Here is the valgrind output for ...
1
vote
2answers
64 views
Memory leaks without allocating any memory
I was just testing out some c code I was writing and I found that I had a lot of memory leaks, so I wanted to see where they were coming from. All the code I had was:
int main() {
return 0;
}
...
2
votes
1answer
57 views
How to undo strip - i.e. add symbols back to stripped binary
I have a stripped binary and symbol-file. Is it possible to add the symbols back to binary and create an unstripped binary.
My use-case is using this binary w/ valgrind.
Thanks.
1
vote
1answer
77 views
Valgrind fails when using setjmp and longjmp
I've been given an assignment so simulate a user-level thread library using signals, setjmp and longjmp c functions.
Basically, the program include memory allocation for each 'thread', and using long ...
0
votes
1answer
88 views
~vector() causes SIGSEGV when exit
Thats the Store Credit problem on Google code jam.
https://code.google.com/codejam/contest/351101/dashboard#s=p0
My code gives out a SIGSEGV after running the large test. But the answer is correct!
...




