X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/62a32394d08487c948e60b95817e03d81f1af91d..e18a7b043d161b29d0bf3f5743cb7a570241576a:/src/simix/smx_private.h diff --git a/src/simix/smx_private.h b/src/simix/smx_private.h index a0c713eba7..f10bf4d126 100644 --- a/src/simix/smx_private.h +++ b/src/simix/smx_private.h @@ -11,6 +11,7 @@ #include #include +#include /********************************** Simix Global ******************************/ @@ -22,8 +23,8 @@ class Global { public: smx_context_factory_t context_factory = nullptr; - xbt_dynar_t process_to_run = nullptr; - xbt_dynar_t process_that_ran = nullptr; + std::vector process_to_run; + std::vector process_that_ran; std::map process_list; #if SIMGRID_HAVE_MC /* MCer cannot read the std::map above in the remote process, so we copy the info it needs in a dynar.