Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Somehow OSX "lost" aligned_alloc recently ?
[simgrid.git] / teshsuite / smpi / pt2pt-pingpong / pt2pt-pingpong.c
index c46ea33..c395917 100644 (file)
@@ -8,6 +8,7 @@
 
 #include <stdio.h>
 #include <mpi.h>
+#include <stdlib.h>
 
 static void test_opts(int* argc, char **argv[]){
   int found = 0;
@@ -30,6 +31,7 @@ int main(int argc, char *argv[])
   int rank;
   int msg = 99;
   MPI_Status status;
+  int* test = (int*)malloc(8);
 
   int err = MPI_Init(&argc, &argv); /* Initialize MPI */
 
@@ -73,6 +75,7 @@ int main(int argc, char *argv[])
       MPI_Send(&msg, 1, MPI_INT, src, tag2, MPI_COMM_WORLD);
     }
   }
+  free(test);
   MPI_Finalize();
   return 0;
 }