X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e709643ef0c5b61c6c878016c418bffa2b1b20cd..96639a9582d88a088f162bf6e8eea95d7b73cb18:/src/smpi/include/smpi_actor.hpp diff --git a/src/smpi/include/smpi_actor.hpp b/src/smpi/include/smpi_actor.hpp index f4712d6b42..f4b1157d93 100644 --- a/src/smpi/include/smpi_actor.hpp +++ b/src/smpi/include/smpi_actor.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2009-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2009-2021. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -59,6 +59,7 @@ public: void mark_as_initialized(); void set_replaying(bool value); bool replaying() const; + std::string get_instance_id() const { return instance_id_;} void set_tracing_category(const std::string& category) { tracing_category_ = category; } const std::string& get_tracing_category() const { return tracing_category_; } smpi_trace_call_location_t* call_location(); @@ -75,6 +76,7 @@ public: void simulated_start(); double simulated_elapsed() const; MPI_Comm comm_world() const; + bool comm_self_is_set() const { return (comm_self_ != MPI_COMM_NULL); }; MPI_Comm comm_self(); MPI_Comm comm_intra(); void set_comm_intra(MPI_Comm comm); @@ -86,7 +88,7 @@ public: void set_optind(int optind); MPI_Info info_env(); void bsend_buffer(void** buf, int* size); - void set_bsend_buffer(void* buf, int size); + int set_bsend_buffer(void* buf, int size); }; } // namespace smpi