Tagged Questions

14
votes
3answers
2k views

Memory Fragmentation Profiler

Are there any good memory fragmentation profilers? (linux gcc version would be nice). Valgrind cannot analyze this because it uses custom malloc/free functions. Thanks, Andrew
8
votes
5answers
2k views

What is a contiguous memory block?

Just like in the title, what is a contiguous memory block?
5
votes
1answer
761 views

Basic heap usage statistics in GCC on 64-bit platform

I need to answer a basic question from inside my C program compiled by GCC for Linux: how much of process heap is currently in use (allocated by malloc) and how much resides if free heap blocks. GNU ...