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

Public GIT Repository
SMPI: Kill the global list of senders and receivers
[simgrid.git] / src / smpi / smpi_mpi.c
index fd643e4b6cf62cb08da75d641c8451e6ab5ae3df..485374468e57e5044b8749b91009cc1ed3ed98b2 100644 (file)
@@ -5,7 +5,7 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_mpi, smpi,
 
 int SMPI_MPI_Init(int *argc, char ***argv)
 {
-  smpi_mpi_init();
+  smpi_process_init();
   smpi_bench_begin();
   return MPI_SUCCESS;
 }
@@ -13,12 +13,12 @@ int SMPI_MPI_Init(int *argc, char ***argv)
 int SMPI_MPI_Finalize()
 {
   smpi_bench_end();
-  smpi_mpi_finalize();
+  smpi_process_finalize();
   return MPI_SUCCESS;
 }
 
 // right now this just exits the current node, should send abort signal to all
-// hosts in the communicator;
+// hosts in the communicator (TODO)
 int SMPI_MPI_Abort(MPI_Comm comm, int errorcode)
 {
   smpi_exit(errorcode);