Tagged Questions
valgrind is a dynamic analysis tool for Linux systems. It can be used for profiling, finding memory leaks, race conditions, and threading errors.
136
votes
17answers
49k views
Is there a good Valgrind substitute for Windows?
I was looking into Valgrind to help improve my C coding/debugging when I discovered it is only for Linux - I have no other need or interest in moving my OS to Linux so I was wondering if there is a ...
25
votes
24answers
11k views
What tools do you use to develop C++ applications on Linux?
I develop C++ applications in a Linux environment. The tools I use every day include Eclipse with the CDT plugin, gdb and valgrind.
What tools do other people use? Is there anything out there for ...
24
votes
9answers
1k views
Memory leak C++
I just wrote a code in C++ which does some string manipulation, but when I ran valgrind over, it shows some possible memory leaks. Debugging the code to granular level I wrote a simple C++ program ...
19
votes
4answers
2k views
How does valgrind work?
Can someone provide a quick top level explanation of how valgrind works? ex. How does it know when memory is allocated and freed?
13
votes
7answers
4k views
12
votes
4answers
3k views
Valgrind vs Purify
Which one is better on Linux? Valgrind or Purify
What is your opinion of using them?
11
votes
3answers
425 views
Difference in behaviour (GCC and Visual C++)
Consider the following code.
#include <stdio.h>
#include <vector>
#include <iostream>
struct XYZ { int X,Y,Z; };
std::vector<XYZ> A;
int rec(int idx)
{
int i = A.size();
...
11
votes
5answers
6k views
Windows Callgrind results browser, alternative to KCacheGrind
Is there any tool, other than KCacheGrind, being able to view callgrind results? Preferably for Windows platform?
10
votes
1answer
169 views
fprintf memory leak
I am using the Instruments from XCode 4.2.1 to find some memory leaks.
I have found a very weird (at least for me) memory leak:
(The function values_table_get_value returns a double, and output = ...
10
votes
4answers
342 views
std::string operator+() memory leak?
I'm quite worry because I wrote a little application and it seems that there is a memory leak if I believe valgrind (What I actually do):
==9321== 251 bytes in 7 blocks are definitely lost in loss ...
10
votes
3answers
4k views
Is anyone using valgrind and Qt?
I am trying to debug a large application build using Qt/C++ and valgrind is reporting a lot of memory leak from internal Qt stuff.
Could anyone share a proper valgrind suppression file for Qt apps ?
...
9
votes
1answer
773 views
Memory debugging tools for Android NDK C++ code
Does anyone know of memory debugging tools (like Valgrind) for native C++ code under Android NDK?
8
votes
3answers
292 views
C memory leak despite free
In debugging my program with Valgrind, I have discovered a memory leak despite what I thought were effective calls to free. First, the code that is allocating the memory and storing it:
row = ...
8
votes
3answers
2k views
Valgrind Massif tool output graphical interface?
I'm using Valgrind 3.3.1 with the Massif tool to profile the heap of a C++ application, and I'm wondering if there is a graphical tool to examine the textual outputfile file.
Thanks for any ...
8
votes
2answers
754 views
Is it overkill to run the unit test with Valgrind?
Just some days ago I started looking into a unit test framework called check,
and I intend to run the test on c code under Linux.
Now check and some well designed code and some test code can help ...
7
votes
1answer
113 views
Suppressing Valgrind errors from GTK+
I have an application that uses GTK+ and Glade; running Valgrind with the memcheck tool outputs about 2,000 errors. Does anyone have a good suppression file they can share for GTK applications?
I ...
7
votes
1answer
258 views
How do I solve memory leaks that are reported to reside in STL string?
For a school project, we have to send big files across the network., we must use Poco::XML for our data.
After our files are send over the network, it appears that the memory does not free.
Here is ...
7
votes
2answers
4k views
pinpointing “conditional jump or move depends on uninitialized value(s)” valgrind message
So I've been getting some mysterious uninitialized values message from valgrind and it's been quite the mystery as of where the bad value originated from.
Seems that valgrind shows the place where ...
7
votes
4answers
309 views
How to profile program on Linux platform without rebuilding?
I've used two profiling tools (VTune on windows and dbx (within sunstudio) on Solaris) which can profile program without rebuild them, and during profiling, the program just run at the same speed as ...
7
votes
8answers
816 views
Complement to valgrind?
I have been working for the last few weeks trying to track down a really difficult bug that crashes my application. First, the application was crashing on the assign of a std::string, then during the ...
7
votes
2answers
1k views
Why does valgrind say basic SDL program is leaking memory?
Here is the SDL program:
#include <SDL/SDL.h>
int main(int argc, char** argv){
SDL_Init(SDL_INIT_VIDEO);
SDL_Surface* screen = SDL_SetVideoMode(640, 480, 16, SDL_HWSURFACE);
...
6
votes
1answer
98 views
Valgrind reports 'possibly lost' memory when working with Boost threads
I have a program that runs some action in a separate therad, then joins on the thread, such as this one:
#include <boost/thread.hpp>
#include <iostream>
using namespace std;
void f() {
...
6
votes
5answers
137 views
tracking uninitialized static variables
I need to debug an ugly and huge math C library, probably once produced by f2c. The code is abusing local static variables, and unfortunately somewhere it seems to exploit the fact that these are ...
6
votes
3answers
143 views
What is the reason for this Valgrind error?
Valgrind is complaining with a substr invocation.
string Message::nextField(string& input) {
int posSeparator = input.find_first_of(SEPARATOR);
string temp;
temp = input.substr(0, ...
6
votes
1answer
134 views
Limit --memcheck To Your Own Code
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 ...
6
votes
1answer
265 views
Valgrind on Basic Qt Application: Reports Masive Leaks
So I wanted to see what would happen to a basic Qt4 Application compiled from a simple Makefile when run through Valgrind. What would be causing these leaks? I am deleting any dynamically allocated ...
6
votes
2answers
520 views
Valgrind reports memory 'possibly lost' when using glib data types
I'm developing a library using a number of glib datastructures (GHashTable, GSList etc.). I've been checking my code frequently for memory leaks using valgrind. Most of the issues valgrind points out ...
6
votes
3answers
258 views
Valgrind 'noise', what does it mean?
When I used valgrind to help debug an app I was working on I notice a huge about of noise which seems to be complaining about standard libraries. As a test I did this;
echo 'int main() {return 0;}' ...
6
votes
3answers
1k views
Valgrind says “stack allocation,” I say “heap allocation”
I am trying to trace a segfault with valgrind. I get the following message from valgrind:
==3683== Conditional jump or move depends on uninitialised value(s)
==3683== at 0x4C277C5: ...
6
votes
4answers
1k views
How to use the cachegrind output to optimize the application
I need to improve the throughput of the system.
The usual cycle of optimization has been done and we have already achieved 1.5X better throughput.
I am now beginning to wonder if I can utilize the ...
5
votes
2answers
64 views
Interpret Valgrind's trace-malloc output
Valgrind is an excellent memory debugger, and it has the option --trace-malloc=yes, which produces something like this:
--16301-- malloc(8) = 0x4EAD748
--16301-- free(0x4EAD748)
--16301-- ...
5
votes
2answers
97 views
Should I use Helgrind or DRD for thread error detection?
Looks like Valgrind has two tools that both do thread error detection: Helgrind and DRD. These tools are substantially similar.
My primary question is: when should I use one instead of the other to ...
5
votes
1answer
119 views
Debug boost::thread application, high false positive rate
I have programmed a boost::thread application, where I might have some race conditions. I want to debug this program. Therefore I used the following valgrind tools:
halgrind
drd
unfortunately they ...
5
votes
5answers
203 views
unclear memory leak with vector, c++, when calling exit
I was debugging my program and I've noticed that even though I've marked almost all of
it as comment and all I did was to push double values into a vector, I have a memory leak. I read the api in c++ ...
5
votes
5answers
248 views
Tools for tracing the heap with Visual C++
I use tools like valgrind to help diagnose C++ code under Linux. How is this done under Windows?
5
votes
7answers
304 views
Valgrind used in C++ development?
I'm quite new to C++ but have some basic C knowledge. In my past C (university) projects, I used Valgrind to check for memleaks.
Now, with C++, is Valgrind a valid tool? Does C++ suffer the same ...
5
votes
3answers
563 views
How to locate a free/delete mismatch reported by Valgrind in a multithreaded program?
Here is the Valgring report:
==14546== Thread 5:
==14546== Invalid free() / delete / delete[]
==14546== at 0x490555D: free (vg_replace_malloc.c:235)
==14546== by 0x3BF7EFAA8F: free_mem (in ...
5
votes
4answers
364 views
Can't figure out where race condition is occuring
I'm using Valgrind --tool=drd to check my application that uses Boost::thread.
Basically, the application populates a set of "Book" values with "Kehai" values based on inputs through a socket ...
5
votes
5answers
2k views
C++ Program Always Crashes While doing a std::string assign
I have been trying to debug a crash in my application that crashes (i.e. asserts a
* glibc detected free(): invalid pointer: 0x000000000070f0c0 **) while I'm trying to do a simple assign to a ...
5
votes
3answers
1k views
Searching for memory leaks in Apache httpd and modules
What is the best way for finding memory leaks in Apache httpd and httpd modules?
Are there any howtos?
I'v tried valgrind a little, but few obstacles appeared:
Valgrind expects for binary to exit ...
5
votes
3answers
3k views
Uninitialised value was created by a heap allocation
I have been chasing this bug around, and I just don't get it. Have I forgotten some basic C or something?
==28357== Conditional jump or move depends on uninitialised value(s)
==28357== at ...
5
votes
5answers
853 views
Is it normal that running python under valgrind shows many errors with memory?
I've tried to debug memory crash in my Python C extension and tried to run script under valgrind. I found there is too much "noise" in the valgrind output, even if I've ran simple command as:
...
4
votes
2answers
108 views
Just a loop, and 33 leaks
Look something strange on my mac :
$> cat main.c
#include <stdio.h>
int main(int ac, char **av) {
for (int i = 0; i < ac; i++)
printf("%s\n", av[i]);
return 0;
}
...
4
votes
0answers
195 views
strcpy valgrind invalid read of size [closed]
Possible Duplicate:
The valgrind reports error when printing allocated strings
I have code which simply copies string. I remember to allocate memory, but valgrind shows some errors and I ...
4
votes
1answer
61 views
How to understand the output of callgrind using Kcachegrind
When profiling the log Kcachegrind shows %of inclusive as 13.92%. Should it not be close to 100% as mentioned in the FAQ Q:1??
Here is the screenshot of the profile log
4
votes
2answers
194 views
The valgrind reports error when printing allocated strings
The code is here:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
char* buf = malloc(3);
strcpy(buf, "hi");
printf("%s\n", buf);
free(buf);
...
4
votes
1answer
117 views
Interpreting valgrind error
I'm trying to debug my code using valgrind. Most of the message I get are:
Conditional jump or move depends on uninitialised value(s)
or
Invalid read of size 8
I'm mainly concerned about the ...
4
votes
4answers
158 views
snprintf in signal handler creates segmentation fault if started with valgrind
This very simple c program gives me a segmentation fault when running it with valgrind.
Its runs fine when started normal.
It crashes when you send the USR1 signal to the process.
The problem seems ...
4
votes
1answer
240 views
Ubuntu System Monitor and valgrind to discover memory leaks in C++ applications
I'm writing an application in C++ which uses some external open source libraries. I tried to look at the Ubuntu System Monitor to have information about how my process uses resources, and I noticed ...
4
votes
3answers
259 views
Could valgrind complaint about uninitialized values be a false positive?
So I've been teaching myself C, and in the hopes of learning how to properly manage memory from the beginning and write better code, I've been running Valgrind on everything. This has helped me with ...