Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2023.
[simgrid.git] / teshsuite / smpi / auto-shared / auto-shared.c
index 8966cc8..2af5a42 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2009-2019. The SimGrid Team.
+/* Copyright (c) 2009-2023. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -33,7 +33,9 @@ int main(int argc, char *argv[])
   MPI_Comm_rank(MPI_COMM_WORLD, &rank);
   MPI_Comm_size(MPI_COMM_WORLD, &size);
   //Let's Allocate a memory buffer
-  uint64_t* buf = malloc(sizeof(uint64_t));
+  uint64_t* buf = calloc(1, sizeof(uint64_t));
+
+  MPI_Barrier(MPI_COMM_WORLD);
   //one writes data in it
   if(rank==0){
     *buf=size;