Top "Valgrind" questions

Valgrind is a dynamic analysis tool for Linux, OS X, Android, and Solaris systems.

How can I monitor memory usage of php in linux?

I have used valgrinds massif tool to monitor memory usage in the past. Does anyone know how to capture memory …

php memory valgrind
How to use valgrind with python?

I am trying to memcheck a C python extension I am writing, but I'm having trouble setting up valgrind to …

python memory-leaks valgrind
How to profile memory usage?

I am aware of Valgrind, but it just detects memory management issues. What I am searching is a tool that …

c++ linux memory profiler valgrind
Parsing a string in C with strsep (alternative methods)

I want to parse a string, and I use strsep function: #include <stdio.h> #include <stdlib.h&…

c parsing valgrind strsep
Valgrind yells about an uninitialised bytes

Valgrind throws me out this error: ==11204== Syscall param write(buf) points to uninitialised byte(s) ==11204== at 0x4109033: write (in /lib/…

c valgrind
Is there Valgrind Memcheck like tool for windows to debug use after free errors?

Durring my work I regulary face rather common programming error - using some object which has already been freed. This …

c++ windows debugging valgrind
Terminate process running inside valgrind

Killing the valgrind process itself leaves no report on the inner process' execution. Is it possible to send a terminate …

valgrind
C - Error is "free(): invalid next size (normal) "

I just can not find what is causing this problem. MYSQL *startup(unsigned char *path_to_file, int size_of_…

pointers gdb valgrind sigabrt
What Does This Valgrind Warning Mean? - warning set address range perms

When I was running my program against valgrind, I encountered the following warning. Warning: set address range perms: large range [0…

c memory valgrind
valgrind memory leak errors when using pthread_create

I'm writing a program using the pthread library. When I run my program with the command valgrind --leak-check=full, I …

c++ memory-leaks pthreads valgrind