A CLI program of mine compiles and runs fine on windows. Compiles fine on linux, but causes a segmentation fault when running.
In my code I have a class named membrane with a function named exciteMod(), a function named decide() and a variable named delta_U. The first line of exciteMod() is this->delta_U = 0. In decide() I
I\'m trying to identify a bug in I have in my code where I get seg. fault while trying to assign value to a pointer from a vector (it is descri开发者_开发百科be better in the link). When I run the cod
Hi! Is it possible to debug/profile a ncurses based application written in Eclipse\\CDT? By using eclipse IDE of course.
I am writing a parallel code in C++ on my OS X (Snow Leopard) laptop, and I am trying to debug it with memchecker. I have successfully built OpenMPI with valgrind support with: configure --prefix=/opt
I\'ve been struggling with this problem for a while now, searching every possible solution. I\'m new to C so I\'ts hard. I know I have some variable uninitialized, but I can\'t find them. I am trying
I am using Valgrind to detect memory leaks/errors in 开发者_如何学Gomy library, and it\'s the first time I\'ve ever used it. It seems to be suggesting that there\'s some invalid reads in std::string.
Lets say I am using a library that uses glibc. When I exit the program while running it through Valgrind all sorts of memory leaks are detected by Valgrind. I am 100% sure that none of the leaks are e
I have a simple matrix class I\'ve made for use with opengl (es 2.0, afaik there isn\'t any built in version for that particular version of opengl).
When running valgrind on the following program the assertion fails: #include <unistd.h> #include <sys/mman.h>