42 #ifndef QF_MPOOL_SIZ_SIZE
45 #define QF_MPOOL_SIZ_SIZE 2U
48 #ifndef QF_MPOOL_CTR_SIZE
51 #define QF_MPOOL_CTR_SIZE 2
55 #if (QF_MPOOL_SIZ_SIZE == 1U)
57 #elif (QF_MPOOL_SIZ_SIZE == 2U)
64 #elif (QF_MPOOL_SIZ_SIZE == 4U)
67 #error "QF_MPOOL_SIZ_SIZE defined incorrectly, expected 1U, 2U, or 4U"
70 #if (QF_MPOOL_CTR_SIZE == 1U)
72 #elif (QF_MPOOL_CTR_SIZE == 2U)
79 #elif (QF_MPOOL_CTR_SIZE == 4U)
82 #error "QF_MPOOL_CTR_SIZE defined incorrectly, expected 1U, 2U, or 4U"
158 void putFromISR(
void *
const b,
176 #define QF_MPOOL_EL(type_) \
177 struct { void *sto_[((sizeof(type_) - 1U)/sizeof(void*)) + 1U]; }
unsigned int uint16_t
exact-width 16-bit unsigned int
unsigned int uint_fast16_t
fast at-least 16-bit unsigned int
unsigned long int uint32_t
exact-width 32-bit unsigned int
unsigned char uint8_t
exact-width 8-bit unsigned int
unsigned int uint_fast8_t
fast at-least 8-bit unsigned int
unsigned long uint_fast32_t
fast at-least 32-bit unsigned int
Native QF memory pool class.
void put(void *const b, std::uint_fast8_t const qs_id) noexcept
Returns a memory block back to a memory pool.
void * m_end
end of the memory managed by this memory pool
void init(void *const poolSto, std::uint_fast32_t poolSize, std::uint_fast16_t blockSize) noexcept
Initializes the native QF event pool.
QMPoolSize m_blockSize
maximum block size (in bytes)
void *volatile m_free_head
head of linked list of free blocks
void * m_start
start of the memory managed by this memory pool
void * get(std::uint_fast16_t const margin, std::uint_fast8_t const qs_id) noexcept
Obtains a memory block from a memory pool.
QMPoolCtr m_nMin
minimum number of free blocks ever present in this pool
QMPoolCtr volatile m_nFree
number of free blocks remaining
QMPool(void)
public default constructor
QMPool & operator=(QMPool const &)=delete
QMPoolCtr m_nTot
total number of blocks
QMPoolSize getBlockSize(void) const noexcept
return the fixed block-size of the blocks managed by this pool
QMPool(QMPool const &)=delete
disallow copying of QMPools
namespace associated with the QP/C++ framework