Files
ftmemsim-valgrind/massif/tests/culling1.c
Nicholas Nethercote d95559802b Changed Massif to record the 'slop' heap bytes caused by rounding asked-for
sizes up to a multiple of 8 (or whatever --alignment is).  This is combined
with the "admin" bytes, resulting in the "extra" bytes.  Added
VG_(malloc_usable_size) to the tool interface to support this.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@7133
2007-11-10 04:08:08 +00:00

11 lines
149 B
C

#include <stdlib.h>
int main(void)
{
int i;
for (i = 0; i < 200; i++) {
malloc(8); // divisible by 8 -- no slop
}
return 0;
}