X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6ee7e9c2e455536ab817ae0136acfbb53822eecd..d52b3c302824b631a2428ad881c66cab7844e753:/src/xbt/xbt_main.c diff --git a/src/xbt/xbt_main.c b/src/xbt/xbt_main.c index 897ea4373d..c0cac04a49 100644 --- a/src/xbt/xbt_main.c +++ b/src/xbt/xbt_main.c @@ -92,7 +92,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, static void xbt_preinit(void) { -#ifdef HAVE_MMAP +#ifdef MMALLOC_WANT_OVERIDE_LEGACY mmalloc_preinit(); #endif xbt_log_preinit(); @@ -123,25 +123,25 @@ static void xbt_preinit(void) XBT_LOG_CONNECT(xbt_parmap,xbt); XBT_LOG_CONNECT(xbt_parmap_unit,xbt_parmap); - xbt_fifo_preinit(); - xbt_dict_preinit(); xbt_backtrace_preinit(); xbt_os_thread_mod_preinit(); + xbt_fifo_preinit(); + xbt_dict_preinit(); } static void xbt_postexit(void) { - xbt_os_thread_mod_postexit(); xbt_backtrace_postexit(); xbt_fifo_postexit(); xbt_dict_postexit(); xbt_log_postexit(); + xbt_os_thread_mod_postexit(); free(xbt_binary_name); -#ifdef HAVE_MMAP +#ifdef MMALLOC_WANT_OVERIDE_LEGACY mmalloc_postexit(); #endif }