0
votes
0answers
9 views
Valgrind compilation error on AIX5
I am getting "need to define SysRes accessors on AIX5 (copy from 3.4.1 sources) "
error while compiling valgrid on AIX5 server.
I downloaded 3.4.1 version but couldnt find
What is …
1
vote
4answers
35 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 …
0
votes
1answer
16 views
kcachegrind for RHEL 5.1
I'm about to perform profiling to application. I have vagrind, but kcachegrind is not installed.
Tryied to compile without success.
Where it can be obtained from for RHEL 5.1?
2
votes
4answers
344 views
Outputting to stderr whenever malloc/free is called
With Linux/GCC/C++, I'd like to record something to stderr whenever malloc/free/new/delete are called. I'm trying to understand a library's memory allocations, and so I'd like to …
1
vote
4answers
45 views
how do i run valgrind to a process which has super user bit on?
I am running valgrind as follows:-
/usr/local/bin/valgrind "process_name"
After excecution its giving me following error
==21731==
==21731== Warning: Can't execute setuid/setgi …
0
votes
1answer
37 views
Valgrind Massif tool output graphical interface?
Hi,
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.
…
0
votes
1answer
60 views
Confusing Valgrind output: indirectly lost blocks but no errors?
I'm running valgrind 3.5.0 to try and squash memory leaks in my program.
I invoke it as so:
valgrind --tool=memcheck --leak-check=yes --show-reachable=yes
After my program fini …
0
votes
6answers
133 views
Valgrind: Deliberately cause segfault
This is a mad-hack, but I am trying to deliberately cause a segfault at a particular point in execution, so valgrind will give me a stack trace.
If there is a better way to do thi …
6
votes
4answers
111 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?
1
vote
4answers
126 views
Valgrind reports “Invalid free() / delete / delete[]” (C++)
I'm not sure what could be causing this.
==18270== Invalid free() / delete / delete[]
==18270== at 0x400576A: operator delete(void*) (vg_replace_malloc.c:342)
==18270== by 0 …
0
votes
1answer
69 views
CppUnit leakage
Hi all, running my regression tests with valgrind I have this kind of report:
==20341== 256 bytes in 1 blocks are indirectly lost in loss record 915 of 919 …
0
votes
1answer
98 views
Compiling a binary to work with valgrind on Snow Leopard
I installed valgrind on Snow Leopard using the patch at https://bugs.kde.org/show%5Fbug.cgi?id=205241 . However, when I run it with a binary I compiled from C++ code, I'm told that …
3
votes
3answers
141 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 …
0
votes
1answer
78 views
Memory leak reported by valgrind in dlopen?
I've been debugging some app lately with valgrind, and I'm getting very weird reports from dlopen.
==1987== 32 bytes in 1 blocks are still reachable in loss record 1 of 2
==1987== …
1
vote
1answer
38 views
How can I get valgrind to tell me the address of each non-freed block of memory?
Valgrind tells me function xxx allocated memory which was not freed. Fine. It's proving more difficult than usual to trace however.
To this end I have created numerous:
#ifdef DE …
