Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
do-nothing program that uses only MPI_Init and MPI_Finalize works now.
[simgrid.git] / src / smpi / sample / first.c
index e37fe80..e48d03a 100644 (file)
@@ -25,6 +25,8 @@ int main(int argc, char *argv[])
                printf("root node believes there are %d nodes in world.\n", size);
        }
 
+       sleep(20);
+
        err = MPI_Finalize();          /* Terminate MPI */
        return 0;
 }