X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9a4ec91cc24a9a54ff3a060cc2828ac54d0c0c26..5f5a10db6fc4552782638abb4817041223e17775:/examples/smpi/mc/non_termination2.c diff --git a/examples/smpi/mc/non_termination2.c b/examples/smpi/mc/non_termination2.c deleted file mode 100644 index 5ccafb6932..0000000000 --- a/examples/smpi/mc/non_termination2.c +++ /dev/null @@ -1,39 +0,0 @@ -/* Copyright (c) 2015-2023. The SimGrid Team. All rights reserved. */ - -/* This program is free software; you can redistribute it and/or modify it - * under the terms of the license (GNU LGPL) which comes with this package. */ - -#include -#include -#include - -int x; - -int main(int argc, char **argv) { - int recv_buff; - int size; - int 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) { - while (1) { - MPI_Recv(&recv_buff, 1, MPI_INT, MPI_ANY_SOURCE, MPI_ANY_TAG, MPI_COMM_WORLD, &status); - } - } else { - while (1) { - x = 2; - MPI_Send(&rank, 1, MPI_INT, 0, 42, MPI_COMM_WORLD); - } - } - - MPI_Finalize(); - - return 0; -}