X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6f5a3a45f1fc86d0ca10bc6c31e22e5686071f45..c29d0d5fe55d92ff909ef22a7ddc9ec224cde1c4:/src/simix/smx_global.cpp diff --git a/src/simix/smx_global.cpp b/src/simix/smx_global.cpp index 4b132db5d6..461b844559 100644 --- a/src/simix/smx_global.cpp +++ b/src/simix/smx_global.cpp @@ -169,22 +169,22 @@ void Global::empty_trash() intrusive_ptr_release(actor); } #if SIMGRID_HAVE_MC - xbt_dynar_reset(simix_global->dead_actors_vector); + xbt_dynar_reset(dead_actors_vector); #endif } /** - * @brief Executes the actors in simix_global->actors_to_run. + * @brief Executes the actors in actors_to_run. * - * The actors in simix_global->actors_to_run are run (in parallel if possible). On exit, simix_global->actors_to_run - * is empty, and simix_global->actors_that_ran contains the list of actors that just ran. - * The two lists are swapped so, be careful when using them before and after a call to this function. + * The actors in actors_to_run are run (in parallel if possible). On exit, actors_to_run is empty, and actors_that_ran + * contains the list of actors that just ran. The two lists are swapped so, be careful when using them before and after + * a call to this function. */ void Global::run_all_actors() { SIMIX_context_runall(); - simix_global->actors_to_run.swap(simix_global->actors_that_ran); - simix_global->actors_to_run.clear(); + actors_to_run.swap(actors_that_ran); + actors_to_run.clear(); } simgrid::config::Flag breakpoint{"simix/breakpoint", @@ -361,7 +361,7 @@ static bool SIMIX_execute_timers() try { timer->callback(); } catch (...) { - xbt_die("Exception thrown ouf of timer callback"); + xbt_die("Exception thrown out of timer callback"); } delete timer; }