2004-06-15 20:56:35 +04:00
|
|
|
/*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*/
|
|
|
|
#ifndef MCA_ALLOCATOR_BASE_H
|
|
|
|
#define MCA_ALLOCATOR_BASE_H
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
|
|
|
|
#include "class/ompi_list.h"
|
|
|
|
#include "mca/mca.h"
|
|
|
|
#include "mca/allocator/allocator.h"
|
|
|
|
|
2004-07-13 00:05:29 +04:00
|
|
|
/**
|
|
|
|
* Structure which describes a selected module.
|
|
|
|
*/
|
2004-06-15 20:56:35 +04:00
|
|
|
struct mca_allocator_base_selected_module_t {
|
2004-07-13 00:05:29 +04:00
|
|
|
ompi_list_item_t super; /**< Makes this an object of type ompi_list_item */
|
|
|
|
mca_allocator_base_module_t *allocator_component; /**< Info about the module */
|
|
|
|
mca_allocator_t *allocator_module; /**< The function pointers for all the module's functions. */
|
2004-06-15 20:56:35 +04:00
|
|
|
};
|
2004-07-13 00:05:29 +04:00
|
|
|
/**
|
|
|
|
* Convenience typedef.
|
|
|
|
*/
|
2004-06-15 20:56:35 +04:00
|
|
|
typedef struct mca_allocator_base_selected_module_t mca_allocator_base_selected_module_t;
|
2004-07-13 00:05:29 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Declaces mca_mpool_base_selected_module_t as a class.
|
|
|
|
*/
|
2004-06-16 19:41:29 +04:00
|
|
|
OBJ_CLASS_DECLARATION(mca_mpool_base_selected_module_t);
|
|
|
|
|
2004-06-15 20:56:35 +04:00
|
|
|
|
|
|
|
/*
|
2004-07-13 00:05:29 +04:00
|
|
|
* Global functions for MCA: overall allocator open and close
|
2004-06-15 20:56:35 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
int mca_allocator_base_open(void);
|
|
|
|
int mca_allocator_base_close(void);
|
2004-06-17 00:01:19 +04:00
|
|
|
mca_allocator_base_module_t* mca_allocator_component_lookup(const char* name);
|
2004-06-15 20:56:35 +04:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Globals
|
|
|
|
*/
|
2004-07-13 00:05:29 +04:00
|
|
|
/**
|
|
|
|
* The list of all the selected components.
|
|
|
|
*/
|
2004-06-16 19:41:29 +04:00
|
|
|
extern ompi_list_t mca_allocator_base_components;
|
2004-06-15 20:56:35 +04:00
|
|
|
|
|
|
|
#endif /* MCA_ALLOCATOR_BASE_H */
|