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

27 lines
1.1 KiB
C

/*****************************************************************************
* CVS File Information :
* $RCSfile$
* Author: patmiller $
* Date: 2007/06/11 14:12:54 $
* Revision: 1.2 $
****************************************************************************/
/***********************************************************************************************/
/* FILE *********** _MPI_UTILITY.c ********************/
/***********************************************************************************************/
/* Author : Lisa Alano June 26 2002 */
/* Copyright (c) 2002 University of California Regents */
/***********************************************************************************************/
#ifndef _MPI_UTIL_H
#define _MPI_UTIL_H
void _MPI_checkMemAlloc (void* array, char* message);
void *_MPI_safeMalloc(int size, char* message);
void *_MPI_safeRealloc(void *oldBuffer, int size, char* message);
void _MPI_safeFree(void* buffer,char* message);
int _MPI_checkIntP (int *pt);
#endif