X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0e884da0760b191b9094bc573d35d8013ae8db93..0ba0b5da8a4948ab678226c4456f97b9b85a71c6:/src/simix/smx_private.h diff --git a/src/simix/smx_private.h b/src/simix/smx_private.h index 602dfdfa8a..f10bf4d126 100644 --- a/src/simix/smx_private.h +++ b/src/simix/smx_private.h @@ -6,10 +6,12 @@ #ifndef SIMIX_PRIVATE_H #define SIMIX_PRIVATE_H -#include +#include "simgrid/s4u/Actor.hpp" #include "src/kernel/context/Context.hpp" +#include #include +#include /********************************** Simix Global ******************************/ @@ -17,10 +19,12 @@ namespace simgrid { namespace simix { class Global { + friend bool simgrid::s4u::this_actor::isMaestro(); + 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. @@ -73,11 +77,6 @@ XBT_PUBLIC(void) SIMIX_clean(); _smx_throw_issuer->exception = std::make_exception_ptr(e); \ } else ((void)0) -typedef struct s_smx_file { - surf_file_t surf_file; -} s_smx_file_t; - - SG_END_DECL() #endif