mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-07-08 03:07:03 +00:00
29 lines
907 B
C
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;
|
|
}
|