X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/830b5c4bc694ade087c43f39015faa9065795630..3227570daf9d253c6d0a79f3c20c04e50e33146c:/src/msg/msg_global.c diff --git a/src/msg/msg_global.c b/src/msg/msg_global.c index e30aa38461..4bd4eb59d4 100644 --- a/src/msg/msg_global.c +++ b/src/msg/msg_global.c @@ -38,9 +38,6 @@ void MSG_init_nocheck(int *argc, char **argv) { s_msg_vm_t vm; // to compute the offset SIMIX_global_init(argc, argv); - - if(MC_IS_ENABLED && mmalloc_ignore == NULL) - MC_ignore_init(); msg_global = xbt_new0(s_MSG_Global_t, 1); @@ -150,22 +147,14 @@ int MSG_process_killall(int reset_PIDs) } -/** \ingroup msg_simulation - * \brief Clean the MSG simulation. - * - * This function is called automatically when the system process stops, so I guess that calling it manually is useless nowadays. - */ static void MSG_exit(void) { if (msg_global==NULL) return; - XBT_DEBUG("Closing MSG"); #ifdef HAVE_TRACING TRACE_surf_release(); #endif - MSG_process_killall(0); - /* initialization of the action module */ _MSG_action_exit();