Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : SMALLEST_POSSIBLE_MALLOC increased
authorMarion Guthmuller <marion.guthmuller@loria.fr>
Wed, 7 Mar 2012 17:27:33 +0000 (18:27 +0100)
committerMarion Guthmuller <marion.guthmuller@loria.fr>
Wed, 7 Mar 2012 17:27:33 +0000 (18:27 +0100)
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