From: Marion Guthmuller Date: Thu, 10 Jan 2013 17:06:46 +0000 (+0100) Subject: model-checker : disable use of system malloc for raw_heap X-Git-Tag: v3_9_rc1~86^2~29 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/f05eb9982f2edbfbdc9dc77268406d9ca5aca2d3 model-checker : disable use of system malloc for raw_heap --- diff --git a/src/mc/mc_memory.c b/src/mc/mc_memory.c index 64c181cd69..f104773658 100644 --- a/src/mc/mc_memory.c +++ b/src/mc/mc_memory.c @@ -24,7 +24,7 @@ void MC_memory_init() std_heap = mmalloc_get_default_md(); xbt_assert(std_heap != NULL); -#ifdef HAVE_GNU_LD +#if defined HAVE_GNU_LD && !defined MMALLOC_WANT_OVERRIDE_LEGACY /* use the system malloc for the model-checker data */ raw_heap = NULL; #else