1
1

Re-add the mem alloc/free function pointer typedefs

This commit was SVN r883.
Этот коммит содержится в:
Jeff Squyres 2004-03-17 19:27:02 +00:00
родитель e572fbb128
Коммит 719dd9b3d0

Просмотреть файл

@ -7,6 +7,8 @@
#include "libltdl/ltdl.h"
#include "mpi.h"
/*
* These units are large enough to warrant their own .h files
*/
@ -38,6 +40,13 @@ typedef struct mca_base_module_priority_list_item_t
mca_base_module_priority_list_item_t;
/*
* Alloc and free mem functions
*/
typedef int (*mca_base_alloc_mem_fn_t)(MPI_Aint size, MPI_Info info,
void **base);
typedef int (*mca_base_free_mem_fn_t)(void *base);
/*
* Public variables
*/