X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f186fd6470cd6853b97c53782c710745c628e810..28335d43a1e64d3a412e8d6b86e59a389852b0d1:/teshsuite/smpi/isp/umpire/abort2.c diff --git a/teshsuite/smpi/isp/umpire/abort2.c b/teshsuite/smpi/isp/umpire/abort2.c deleted file mode 100644 index 563a6b915a..0000000000 --- a/teshsuite/smpi/isp/umpire/abort2.c +++ /dev/null @@ -1,43 +0,0 @@ -/* -*- Mode: C; -*- */ -/* Creator: Bronis R. de Supinski (bronis@llnl.gov) Tue Oct 29 2002 */ -/* abort2.c -- call MPI abort in task zero... */ - - -#include -#include "mpi.h" - - -int -main (int argc, char **argv) -{ - int nprocs = -1; - int rank = -1; - char processor_name[128]; - int namelen = 128; - - /* init */ - MPI_Init (&argc, &argv); - MPI_Comm_size (MPI_COMM_WORLD, &nprocs); - MPI_Comm_rank (MPI_COMM_WORLD, &rank); - MPI_Get_processor_name (processor_name, &namelen); - printf ("(%d) is alive on %s\n", rank, processor_name); - fflush (stdout); - - MPI_Barrier (MPI_COMM_WORLD); - - if (nprocs < 2) { - printf ("not enough tasks\n"); - } - else { - if (rank == 0) { - printf ("(%d) Aborting\n", rank); - MPI_Abort (MPI_COMM_WORLD, -1); - } - } - - MPI_Barrier (MPI_COMM_WORLD); - MPI_Finalize (); - printf ("(%d) Finished normally\n", rank); -} - -/* EOF */