2009-08-20 04:36:20 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2015-06-23 20:59:57 -07:00
|
|
|
* Copyright (c) 2004-2008 High Performance Computing Center Stuttgart,
|
2009-08-20 04:36:20 +00:00
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2007-2009 Cisco Systems, Inc. All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
2015-06-23 20:59:57 -07:00
|
|
|
*
|
2009-08-20 04:36:20 +00:00
|
|
|
* Additional copyrights may follow
|
2015-06-23 20:59:57 -07:00
|
|
|
*
|
2009-08-20 04:36:20 +00:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "ompi/mpi/c/bindings.h"
|
|
|
|
|
2015-06-23 20:59:57 -07:00
|
|
|
int MPI_Abort(MPI_Comm comm, int errorcode)
|
2009-08-20 04:36:20 +00:00
|
|
|
{
|
|
|
|
char commname[MPI_MAX_OBJECT_NAME];
|
|
|
|
int len;
|
|
|
|
int rank;
|
2015-06-23 20:59:57 -07:00
|
|
|
|
2009-08-20 04:36:20 +00:00
|
|
|
PMPI_Comm_rank(MPI_COMM_WORLD, &rank);
|
|
|
|
PMPI_Comm_get_name(comm, commname, &len);
|
2015-06-23 20:59:57 -07:00
|
|
|
|
2009-08-20 04:36:20 +00:00
|
|
|
fprintf(stderr, "MPI_ABORT[%d]: comm %s errorcode %d\n", rank, commname, errorcode);
|
|
|
|
fflush(stderr);
|
2015-06-23 20:59:57 -07:00
|
|
|
|
2009-08-20 04:36:20 +00:00
|
|
|
return PMPI_Abort(comm, errorcode);
|
|
|
|
}
|