mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-07-08 03:07:03 +00:00
27 lines
1.1 KiB
C
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
|