2009-08-16 13:07:24 +00:00
|
|
|
/*
|
2011-03-18 18:38:08 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
2012-01-21 14:29:42 +00:00
|
|
|
2011,2012 Giovanni Di Sirio.
|
2009-08-16 13:07:24 +00:00
|
|
|
|
|
|
|
This file is part of ChibiOS/RT.
|
|
|
|
|
|
|
|
ChibiOS/RT is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
ChibiOS/RT is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-02-27 08:54:22 +00:00
|
|
|
* @file chmempools.h
|
2010-02-06 12:31:09 +00:00
|
|
|
* @brief Memory Pools macros and structures.
|
|
|
|
*
|
2009-08-30 06:59:43 +00:00
|
|
|
* @addtogroup pools
|
2009-08-16 13:07:24 +00:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2010-02-27 08:54:22 +00:00
|
|
|
#ifndef _CHMEMPOOLS_H_
|
|
|
|
#define _CHMEMPOOLS_H_
|
2009-08-16 13:07:24 +00:00
|
|
|
|
2010-09-18 06:48:56 +00:00
|
|
|
#if CH_USE_MEMPOOLS || defined(__DOXYGEN__)
|
2009-08-16 13:07:24 +00:00
|
|
|
|
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief Memory pool free object header.
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
|
|
|
struct pool_header {
|
2010-02-06 12:31:09 +00:00
|
|
|
struct pool_header *ph_next; /**< @brief Pointer to the next pool
|
|
|
|
header in the list. */
|
2009-08-16 13:07:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief Memory pool descriptor.
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
|
|
|
typedef struct {
|
2009-10-20 17:26:27 +00:00
|
|
|
struct pool_header *mp_next; /**< @brief Pointer to the header. */
|
|
|
|
size_t mp_object_size; /**< @brief Memory pool objects
|
|
|
|
size. */
|
|
|
|
memgetfunc_t mp_provider; /**< @brief Memory blocks provider for
|
|
|
|
this pool. */
|
2009-08-16 13:07:24 +00:00
|
|
|
} MemoryPool;
|
|
|
|
|
|
|
|
/**
|
2010-02-06 12:31:09 +00:00
|
|
|
* @brief Data part of a static memory pool initializer.
|
2009-08-16 13:07:24 +00:00
|
|
|
* @details This macro should be used when statically initializing a
|
|
|
|
* memory pool that is part of a bigger structure.
|
2009-10-17 09:21:59 +00:00
|
|
|
*
|
2010-02-06 12:31:09 +00:00
|
|
|
* @param[in] name the name of the memory pool variable
|
|
|
|
* @param[in] size size of the memory pool contained objects
|
|
|
|
* @param[in] provider memory provider function for the memory pool
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
2009-10-20 17:26:27 +00:00
|
|
|
#define _MEMORYPOOL_DATA(name, size, provider) \
|
2011-02-24 14:57:38 +00:00
|
|
|
{NULL, MEM_ALIGN_NEXT(size), provider}
|
2009-08-16 13:07:24 +00:00
|
|
|
|
|
|
|
/**
|
2009-10-20 17:26:27 +00:00
|
|
|
* @brief Static memory pool initializer in hungry mode.
|
2009-08-16 13:07:24 +00:00
|
|
|
* @details Statically initialized memory pools require no explicit
|
|
|
|
* initialization using @p chPoolInit().
|
2009-10-17 09:21:59 +00:00
|
|
|
*
|
2009-10-20 17:26:27 +00:00
|
|
|
* @param[in] name the name of the memory pool variable
|
|
|
|
* @param[in] size size of the memory pool contained objects
|
|
|
|
* @param[in] provider memory provider function for the memory pool or @p NULL
|
|
|
|
* if the pool is not allowed to grow automatically
|
2009-10-17 09:21:59 +00:00
|
|
|
*/
|
2009-10-20 17:26:27 +00:00
|
|
|
#define MEMORYPOOL_DECL(name, size, provider) \
|
|
|
|
MemoryPool name = _MEMORYPOOL_DATA(name, size, provider)
|
2009-10-17 09:21:59 +00:00
|
|
|
|
2012-04-09 13:13:25 +00:00
|
|
|
/**
|
|
|
|
* @name Macro Functions
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @brief Adds an object to a memory pool.
|
|
|
|
* @pre The memory pool must be already been initialized.
|
|
|
|
* @pre The added object must be of the right size for the specified
|
|
|
|
* memory pool.
|
|
|
|
* @pre The added object must be memory aligned to the size of
|
|
|
|
* @p stkalign_t type.
|
|
|
|
* @note This function is just an alias for @p chPoolFree() and has been
|
|
|
|
* added for clarity.
|
|
|
|
*
|
|
|
|
* @param[in] mp pointer to a @p MemoryPool structure
|
|
|
|
* @param[in] objp the pointer to the object to be added
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
*/
|
|
|
|
#define chPoolAdd(mp, objp) chPoolFree(mp, objp)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Adds an object to a memory pool.
|
|
|
|
* @pre The memory pool must be already been initialized.
|
|
|
|
* @pre The added object must be of the right size for the specified
|
|
|
|
* memory pool.
|
|
|
|
* @pre The added object must be memory aligned to the size of
|
|
|
|
* @p stkalign_t type.
|
|
|
|
* @note This function is just an alias for @p chPoolFree() and has been
|
|
|
|
* added for clarity.
|
|
|
|
*
|
|
|
|
* @param[in] mp pointer to a @p MemoryPool structure
|
|
|
|
* @param[in] objp the pointer to the object to be added
|
|
|
|
*
|
|
|
|
* @iclass
|
|
|
|
*/
|
|
|
|
#define chPoolAddI(mp, objp) chPoolFreeI(mp, objp)
|
|
|
|
/** @} */
|
|
|
|
|
2009-08-16 13:07:24 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2009-10-20 17:26:27 +00:00
|
|
|
void chPoolInit(MemoryPool *mp, size_t size, memgetfunc_t provider);
|
2012-04-09 13:13:25 +00:00
|
|
|
void chPoolLoadArray(MemoryPool *mp, void *p, size_t n);
|
2009-08-16 13:07:24 +00:00
|
|
|
void *chPoolAllocI(MemoryPool *mp);
|
|
|
|
void *chPoolAlloc(MemoryPool *mp);
|
|
|
|
void chPoolFreeI(MemoryPool *mp, void *objp);
|
|
|
|
void chPoolFree(MemoryPool *mp, void *objp);
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* CH_USE_MEMPOOLS */
|
|
|
|
|
2010-02-27 08:54:22 +00:00
|
|
|
#endif /* _CHMEMPOOLS_H_ */
|
2009-08-16 13:07:24 +00:00
|
|
|
|
|
|
|
/** @} */
|