X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b830103bb89748d30c84ff7a0e88ca821d2d78b7..2df88396d94796a341f1dbaa1d41f3162745d927:/src/smpi/include/smpi_actor.hpp diff --git a/src/smpi/include/smpi_actor.hpp b/src/smpi/include/smpi_actor.hpp index 098642963f..6528fc99d6 100644 --- a/src/smpi/include/smpi_actor.hpp +++ b/src/smpi/include/smpi_actor.hpp @@ -27,7 +27,6 @@ class ActorExt { int sampling_ = 0; /* inside an SMPI_SAMPLE_ block? */ std::string instance_id_; bool replaying_ = false; /* is the process replaying a trace */ - s4u::Barrier* finalization_barrier_; smpi_trace_call_location_t trace_call_loc_; s4u::ActorPtr actor_ = nullptr; smpi_privatization_region_t privatized_region_ = nullptr; @@ -37,6 +36,7 @@ class ActorExt { int optind_ = 1; /*for getopt replacement */ #endif std::string tracing_category_ = ""; + MPI_Info info_env_; #if HAVE_PAPI /** Contains hardware data as read by PAPI **/ @@ -44,11 +44,10 @@ class ActorExt { papi_counter_t papi_counter_data_; #endif public: - explicit ActorExt(s4u::ActorPtr actor, s4u::Barrier* barrier); + explicit ActorExt(s4u::ActorPtr actor); ActorExt(const ActorExt&) = delete; ActorExt& operator=(const ActorExt&) = delete; ~ActorExt(); - void set_data(const char* instance_id); void finalize(); int finalized(); int initializing(); @@ -81,6 +80,7 @@ public: s4u::ActorPtr get_actor(); int get_optind(); void set_optind(int optind); + MPI_Info info_env(); }; } // namespace smpi