Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Align address on page boundary (fails on kfreebsd otherwise).
[simgrid.git] / teshsuite / xbt / mmalloc_test.c
index 7c1864b..8b245aa 100644 (file)
@@ -21,7 +21,9 @@ int main(int argc, char**argv)
   xbt_init(&argc,argv);
 
   XBT_INFO("Allocating a new heap");
-  heapA = xbt_mheap_new(-1, ((char*)sbrk(0)) + BUFFSIZE);
+  unsigned long mask = ~((unsigned long)getpagesize() - 1);
+  void *addr = (void*)(((unsigned long)sbrk(0) + BUFFSIZE) & mask);
+  heapA = xbt_mheap_new(-1, addr);
   if (heapA == NULL) {
     perror("attach 1 failed");
     fprintf(stderr, "bye\n");