2004-06-15 20:56:35 +04:00
|
|
|
/**
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
/**
|
2004-07-13 00:05:29 +04:00
|
|
|
* @file
|
|
|
|
* The public definition of the MCA Allocator framework.
|
2004-06-15 20:56:35 +04:00
|
|
|
*/
|
|
|
|
#ifndef MCA_ALLOCATOR_H
|
|
|
|
#define MCA_ALLOCATOR_H
|
|
|
|
#include "mca/mca.h"
|
|
|
|
|
2004-08-02 04:24:22 +04:00
|
|
|
/* Here so that we can use mca_allocator_base_module_t in the function typedefs */
|
|
|
|
struct mca_allocator_base_module_t;
|
2004-06-15 20:56:35 +04:00
|
|
|
|
|
|
|
/**
|
2004-07-13 00:05:29 +04:00
|
|
|
* The allocate function typedef for the functrion to be provided by the component.
|
2004-06-15 20:56:35 +04:00
|
|
|
*/
|
2004-08-02 04:24:22 +04:00
|
|
|
typedef void* (*mca_allocator_base_module_alloc_fn_t)(struct mca_allocator_base_module_t*, size_t size, size_t align);
|
2004-06-15 20:56:35 +04:00
|
|
|
|
|
|
|
/**
|
2004-07-13 00:05:29 +04:00
|
|
|
* The realloc function typedef
|
2004-06-15 20:56:35 +04:00
|
|
|
*/
|
2004-08-02 04:24:22 +04:00
|
|
|
typedef void* (*mca_allocator_base_module_realloc_fn_t)(struct mca_allocator_base_module_t*, void*, size_t);
|
2004-06-15 20:56:35 +04:00
|
|
|
|
|
|
|
/**
|
2004-07-13 00:05:29 +04:00
|
|
|
* Free function typedef
|
2004-06-15 20:56:35 +04:00
|
|
|
*/
|
2004-08-02 04:24:22 +04:00
|
|
|
typedef void(*mca_allocator_base_module_free_fn_t)(struct mca_allocator_base_module_t*, void *);
|
2004-06-15 20:56:35 +04:00
|
|
|
|
|
|
|
|
2004-07-13 00:05:29 +04:00
|
|
|
/**
|
2004-06-17 00:59:06 +04:00
|
|
|
* compact/return memory to higher level allocator
|
|
|
|
*/
|
|
|
|
|
2004-08-02 04:24:22 +04:00
|
|
|
typedef int (*mca_allocator_base_module_return_fn_t)(
|
|
|
|
struct mca_allocator_base_module_t* allocator
|
2004-06-17 00:59:06 +04:00
|
|
|
);
|
|
|
|
|
|
|
|
|
2004-07-13 00:05:29 +04:00
|
|
|
/**
|
2004-06-17 00:59:06 +04:00
|
|
|
* cleanup (free) any resources held by allocator
|
|
|
|
*/
|
|
|
|
|
2004-08-02 04:24:22 +04:00
|
|
|
typedef int (*mca_allocator_base_module_finalize_fn_t)(
|
|
|
|
struct mca_allocator_base_module_t* allocator
|
2004-06-15 20:56:35 +04:00
|
|
|
);
|
|
|
|
|
2004-07-13 00:05:29 +04:00
|
|
|
/**
|
|
|
|
* The data structure for each component.
|
|
|
|
*/
|
2004-08-02 04:24:22 +04:00
|
|
|
struct mca_allocator_base_module_t {
|
|
|
|
mca_allocator_base_module_alloc_fn_t alc_alloc;
|
|
|
|
/**< Allocate memory */
|
|
|
|
mca_allocator_base_module_realloc_fn_t alc_realloc;
|
|
|
|
/**< Reallocate memory */
|
|
|
|
mca_allocator_base_module_free_fn_t alc_free;
|
|
|
|
/**< Free memory */
|
|
|
|
mca_allocator_base_module_return_fn_t alc_return;
|
|
|
|
/**< Return memory */
|
|
|
|
mca_allocator_base_module_finalize_fn_t alc_finalize;
|
|
|
|
/**< Finalize and free everything */
|
2004-06-15 20:56:35 +04:00
|
|
|
};
|
2004-07-13 00:05:29 +04:00
|
|
|
/**
|
|
|
|
* Convenience typedef.
|
|
|
|
*/
|
2004-08-02 04:24:22 +04:00
|
|
|
typedef struct mca_allocator_base_module_t mca_allocator_base_module_t;
|
2004-06-15 20:56:35 +04:00
|
|
|
|
|
|
|
|
2004-06-15 21:19:11 +04:00
|
|
|
/**
|
2004-07-13 00:05:29 +04:00
|
|
|
* A function to get more memory from the system. This function is to be
|
|
|
|
* provided by the module to the allocator framework.
|
2004-06-15 21:19:11 +04:00
|
|
|
*/
|
|
|
|
|
2004-08-02 04:24:22 +04:00
|
|
|
typedef void* (*mca_allocator_base_component_segment_alloc_fn_t)(size_t* size);
|
2004-06-15 21:19:11 +04:00
|
|
|
|
|
|
|
/**
|
2004-07-13 00:05:29 +04:00
|
|
|
* A function to free memory from the control of the allocator framework
|
|
|
|
* back to the system. This function is to be provided by the module to the
|
|
|
|
* allocator frmaework.
|
2004-06-15 21:19:11 +04:00
|
|
|
*/
|
2004-08-02 04:24:22 +04:00
|
|
|
typedef void* (*mca_allocator_base_component_segment_free_fn_t)(void* segment);
|
2004-06-15 21:19:11 +04:00
|
|
|
|
|
|
|
|
2004-06-15 20:56:35 +04:00
|
|
|
/**
|
2004-08-02 04:24:22 +04:00
|
|
|
* The function used to initialize the component.
|
2004-06-15 20:56:35 +04:00
|
|
|
*/
|
2004-08-02 04:24:22 +04:00
|
|
|
typedef struct mca_allocator_base_module_t* (*mca_allocator_base_component_init_fn_t)(
|
2004-06-15 21:19:11 +04:00
|
|
|
bool *allow_multi_user_threads,
|
2004-08-02 04:24:22 +04:00
|
|
|
mca_allocator_base_component_segment_alloc_fn_t segment_alloc,
|
|
|
|
mca_allocator_base_component_segment_free_fn_t segment_free
|
2004-06-15 20:56:35 +04:00
|
|
|
);
|
|
|
|
|
2004-07-13 00:05:29 +04:00
|
|
|
/**
|
|
|
|
* The data structure provided by each component to the framework which
|
|
|
|
* describes the component.
|
|
|
|
*/
|
2004-08-02 04:24:22 +04:00
|
|
|
struct mca_allocator_base_component_1_0_0_t {
|
|
|
|
mca_base_component_t allocator_version;
|
|
|
|
/**< The version of the component */
|
|
|
|
mca_base_component_data_1_0_0_t allocator_data;
|
|
|
|
/**< The component metadata */
|
|
|
|
mca_allocator_base_component_init_fn_t allocator_init;
|
|
|
|
/**< The component initialization function. */
|
2004-06-15 20:56:35 +04:00
|
|
|
};
|
2004-08-02 04:24:22 +04:00
|
|
|
|
2004-07-13 00:05:29 +04:00
|
|
|
/**
|
|
|
|
* Convenience typedef.
|
|
|
|
*/
|
2004-08-02 04:24:22 +04:00
|
|
|
typedef struct mca_allocator_base_component_1_0_0_t mca_allocator_base_component_t;
|
2004-06-15 20:56:35 +04:00
|
|
|
|
2004-07-13 00:05:29 +04:00
|
|
|
/**
|
2004-08-02 04:24:22 +04:00
|
|
|
* Macro for use in components that are of type allocator v1.0.0
|
2004-06-16 02:03:54 +04:00
|
|
|
*/
|
|
|
|
#define MCA_ALLOCATOR_BASE_VERSION_1_0_0 \
|
|
|
|
/* mpool v1.0 is chained to MCA v1.0 */ \
|
|
|
|
MCA_BASE_VERSION_1_0_0, \
|
|
|
|
/* ptl v1.0 */ \
|
|
|
|
"allocator", 1, 0, 0
|
|
|
|
|
2004-07-13 00:05:29 +04:00
|
|
|
/**
|
|
|
|
* The output integer used for the mca base
|
|
|
|
*/
|
2004-06-16 19:41:29 +04:00
|
|
|
extern int mca_allocator_base_output;
|
|
|
|
|
2004-06-15 20:56:35 +04:00
|
|
|
#endif /* MCA_ALLOCATOR_H */
|
|
|
|
|