Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add a simgrid barrier at the end of MPI_Init call.
[simgrid.git] / src / smpi / include / smpi_actor.hpp
index f4712d6..f4b1157 100644 (file)
@@ -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