Files
phasicFlow/thirdParty/Zoltan/siMPI/pyMPI/siMPI/PMPI_Abort.c
2025-05-15 21:58:43 +03:30

29 lines
907 B
C

/*****************************************************************************
* CVS File Information :
* $RCSfile$
* Author: patmiller $
* Date: 2007/06/11 14:12:51 $
* Revision: 1.2 $
****************************************************************************/
/* FILE *********** PMPI_Abort.c ********************/
/******************************************************************/
/* Author : Lisa Alano June 24 2002 */
/* Copyright (c) 2002 University of California Regents */
/******************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "mpi.h"
int PMPI_Abort( MPI_Comm comm, int errorcode )
{
_MPI_COVERAGE();
#ifndef _MPI_DEBUG
#define _MPIDEBUG 1
#endif
_MPI_ERR_ROUTINE(errorcode, "MPI aborting...");
abort();
return -1;
}