Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
removed some unnecessary waiting
[simgrid.git] / src / smpi / smpi_mpi.c
index b21ccbf..988f2ee 100644 (file)
@@ -53,7 +53,7 @@ int MPI_Comm_rank(MPI_Comm comm, int *rank)
        } else if (NULL == rank) {
                retval = MPI_ERR_ARG;
        } else {
        } else if (NULL == rank) {
                retval = MPI_ERR_ARG;
        } else {
-               *rank = smpi_comm_rank(comm, SIMIX_host_self());
+               *rank = smpi_mpi_comm_rank(comm, SIMIX_host_self());
        }
 
        smpi_bench_begin();
        }
 
        smpi_bench_begin();