Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Avoid heap collisions by using a bigger gap bewteen the two heaps
authorGabriel Corona <gabriel.corona@loria.fr>
Fri, 21 Mar 2014 14:42:53 +0000 (15:42 +0100)
committerGabriel Corona <gabriel.corona@loria.fr>
Fri, 21 Mar 2014 14:42:53 +0000 (15:42 +0100)
src/include/mc/mc.h

index d7a6973..80f7146 100644 (file)
 #include "xbt/automaton.h"
 #include "xbt/dynar.h"
 
-#define STD_HEAP_SIZE   (50*1024*1024)        /* Maximum size of the system's heap */
+/* Maximum size of the application heap.
+ *
+ * The model-checker heap is placed at this offset from the
+ * beginning of the application heap.
+ *
+ * In the current implementation, if the application uses more
+ * than this for the application heap the application heap will
+ * smash the beginning of the model-checker heap and bad things
+ * will happen.
+ *
+ * For 64 bits systems, we have a lot of virtual memory available
+ * so we wan use a much bigger value in order to avoid bad things
+ * from happening.
+ * */
+
+#define STD_HEAP_SIZE   (sizeof(void*)<=4 ? (100*1024*1024) : (1ll*1024*1024*1024*1024))
 
 SG_BEGIN_DECL()