Tagged Questions
The memcheck tag has no wiki summary.
3
votes
2answers
169 views
How do I merge Valgrind memcheck reports from multiple runs of the same process?
I've got an set of acceptance tests that run nightly. I'd like to use valgrind to check for memory leaks in my code automatically as an additional safe-guard to manually checking for leaks. Updating ...
3
votes
2answers
393 views
how do i valgrind memcheck on every instance of Process without starting it via valgrind command options
how do i do a valgrind memcheck on every instance of Process without starting it via valgrind command options.
Is there a way to keep the monitoring options saved on a process rather than starting up ...
2
votes
1answer
112 views
How to detect memory leaks in a dll library?
I have d7 and dll library. How can i attach the memcheck to that library,
that I could detect memory leaks in it?
2
votes
5answers
10k views
Should I worry about “Conditional jump or move depends on uninitialised value(s)”?
If you've used Memcheck (from Valgrind) you'll probably be familiar with this message...
Conditional jump or move depends on uninitialized value(s)
I've read about this and it simply occurs when ...
1
vote
2answers
98 views
What does possible lost means in valgrind
I have a lot of possible lost entry from valgrind. What does that mean ?
As I am using sqlite and it is well tested. I don't think these are correct entry. What I am doing wrong ?
16 bytes in 1 ...
1
vote
1answer
117 views
Valgrind output confusing
I am having a bit of trouble understanding the Valgrind output:
1> "Invalid write of size 4" is coming up in an auto-generated adb file,
return (gnat_exit_status); -- this is line 314 of ...
1
vote
6answers
521 views
Valgrind claims there is unfreed memory. Is this bad?
Valgrind gives me the following leak summary on my code. However, I have freed all malloc'ed memory. Is this a bad thing, or is this normal? My program is in c.
==3513== LEAK SUMMARY:
...
0
votes
1answer
189 views
Valgrind program is crashing Bad permissions for mapped region at address
I am trying to run my program to check memory leaks in my program but whenever I start my program I am getting
==3476== Process terminating with default action of signal 11 (SIGSEGV): dumping core
...
0
votes
1answer
78 views
Valgrind (memcheck) is not displaying the leak/error summary. Help?
I typed in >>valgrind ./myprogramname --tools-memcheck --leak-check=yes
But the summary of the memory leaks and errors are not printing out when the program ends. I am running Centos 5.5 and have ...
0
votes
1answer
100 views
Show The Command Line of Valgrind Used in Eclipse CDT
I'm using valgrind for profiling/memchecking my application in Eclipse CDT (Indigo).
After profiling it with memcheck in Eclipse, I found two "possibly lost"s (both from libraries that are out of my ...
0
votes
1answer
99 views
Cuda-memcheck and JOCL, can a java executable make use of it? (OpenCL)
I love JOCL, Java bindings for OpenCL. I would like to run Cuda-memcheck on an executable from Java, but whenever I make Java applications, they are always just JAR files that point to a Main-Class. ...
0
votes
1answer
101 views
Analyze with valgrind only some functions and subfunctions
I want to debug a "big" C code, and use valgrind, in particular the tool memcheck. The output is very long, due to the size of the program, and I only want to focus on some function and relative ...
0
votes
1answer
192 views
Valgrind memcheck programmatic enable
I don't suppose there is a way to programmatically enable/disable Valgrind memcheck the way you can with callgrind? (Start/stop instrumentation).
It's painfully, unusably slow (which is okay if the ...
-1
votes
1answer
21 views
Understanding Valgrind o/p
I am running memcheck using valgrind.
the o/p is
==3091== 204 bytes in 17 blocks are definitely lost in loss record 1,406 of 2,299
what does it mean ?
What I guess there is 204 bytes memory loss ...