X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2bd9a37bbb72eac4ed613b3d6953aba6555e2e92..4b8be43e2c03939bc780b6112d841d8b839a79bb:/examples/smpi/mc/non_termination4.c diff --git a/examples/smpi/mc/non_termination4.c b/examples/smpi/mc/non_termination4.c index c992b2491e..5e7add0560 100644 --- a/examples/smpi/mc/non_termination4.c +++ b/examples/smpi/mc/non_termination4.c @@ -5,15 +5,14 @@ int x = 20; int main(int argc, char **argv) { - - int recv_x = 1, size, rank; + int recv_x = 1, size, rank; MPI_Status status; MPI_Init(&argc, &argv); - + MPI_Comm_size(MPI_COMM_WORLD, &size); /* Get nr of tasks */ MPI_Comm_rank(MPI_COMM_WORLD, &rank); /* Get id of this process */ - + MC_ignore(&(status.count), sizeof(status.count)); if(rank==0){ @@ -21,7 +20,6 @@ int main(int argc, char **argv) { MPI_Recv(&recv_x, 1, MPI_INT, MPI_ANY_SOURCE, MPI_ANY_TAG, MPI_COMM_WORLD, &status); } }else{ - while (x >= 0) { if (MC_random(0,1) == 0) { x -= 1; @@ -34,6 +32,6 @@ int main(int argc, char **argv) { } MPI_Finalize(); - - return 0; + + return 0; }