]> AND Public Git Repository - simgrid.git/blobdiff - src/smpi/mpi/smpi_comm.cpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
smpi: expend a bunch of macros so that the functions' prototypes become accessible...
[simgrid.git] / src / smpi / mpi / smpi_comm.cpp
index fdd8b69d2aac8f714509e84a401d37a9ffa5d1a2..3507333c9cd435637c40fbea6cb423542d734f24 100644 (file)
@@ -48,10 +48,10 @@ Comm::Comm(MPI_Group group, MPI_Topology topo, int smp, int in_id) : group_(grou
       id=global_id_;
       global_id_++;
     }
-    Colls::bcast(&id, 1, MPI_INT, 0, this);
+    colls::bcast(&id, 1, MPI_INT, 0, this);
     XBT_DEBUG("Communicator %p has id %d", this, id);
     id_=id;//only set here, as we don't want to change it in the middle of the bcast
-    Colls::barrier(this);
+    colls::barrier(this);
   }
 }