ftmemsim-valgrind/memcheck/tests/memalign_test.c
Julian Seward 3e344c57f6 Merge in a port for mips32-linux, by Petar Jovanovic and Dejan Jevtic,
mips-valgrind@rt-rk.com, Bug 270777.

Valgrind: changes to existing files.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12616
2012-06-07 09:13:21 +00:00

28 lines
616 B
C

#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <assert.h>
int main ( void )
{
void* a[10];
int i;
unsigned long pszB = sysconf(_SC_PAGE_SIZE);
assert(sizeof(long) == sizeof(void*));
assert(pszB == 4096 || pszB == 16384 || pszB == 65536);
for (i = 0; i < 10; i++) {
a[i] = valloc(11111 * (i+1));
/* check valloc really is returning page-aligned memory */
assert( (((unsigned long)(a[i])) % pszB) == 0 );
// printf("I acquire %p\n", a[i]);
}
for (i = 0; i < 10; i++) {
// printf("I release %p\n", a[i]);
free(a[i]);
}
free(a[9]);
return 0;
}