From f05eb9982f2edbfbdc9dc77268406d9ca5aca2d3 Mon Sep 17 00:00:00 2001 From: Marion Guthmuller Date: Thu, 10 Jan 2013 18:06:46 +0100 Subject: [PATCH 1/1] model-checker : disable use of system malloc for raw_heap --- src/mc/mc_memory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.20.1