Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : SMALLEST_POSSIBLE_MALLOC increased
[simgrid.git] / src / xbt / mmalloc / mmprivate.h
index 2298c27..d2e638b 100644 (file)
@@ -53,7 +53,8 @@
  * need to enlist the free fragments.
  */
 
-#define SMALLEST_POSSIBLE_MALLOC (sizeof(struct list))
+//#define SMALLEST_POSSIBLE_MALLOC (sizeof(struct list))
+#define SMALLEST_POSSIBLE_MALLOC (16*sizeof(struct list))
 #define MAX_FRAGMENT_PER_BLOCK (BLOCKSIZE / SMALLEST_POSSIBLE_MALLOC)
 
 /* The difference between two pointers is a signed int.  On machines where