X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/02ae829468d448fedc59be33dfd8b6d829b77ad6..0c539f5e2d25206246bb12e6dc036b108ea778e5:/src/surf/surf.c diff --git a/src/surf/surf.c b/src/surf/surf.c index 4a8b163795..057a81e407 100644 --- a/src/surf/surf.c +++ b/src/surf/surf.c @@ -309,6 +309,7 @@ void surf_init(int *argc, char **argv) history = tmgr_history_new(); surf_config_init(argc, argv); + surf_action_init(); if (MC_IS_ENABLED) MC_memory_init(); } @@ -362,6 +363,7 @@ void surf_exit(void) tmgr_history_free(history); history = NULL; } + surf_action_exit(); if (surf_path) xbt_dynar_free(&surf_path); @@ -466,6 +468,10 @@ double surf_solve(double max_date) xbt_dynar_foreach(model_list, iter, model) model->model_private->update_actions_state(NOW, min); +#ifdef HAVE_TRACING + TRACE_paje_dump_buffer (0); +#endif + return min; }