cp_mempool_alloc(3) - Linux man page
Name
cp_mempool_alloc, cp_mempool_calloc - obtain memory block from a memorypool
Synopsis
#include <cprops/mempool.h>void *cp_mempool_alloc(cp_mempool * const pool);
void *cp_mempool_calloc(cp_mempool * const pool);
Description
cp_mempool_alloc returns an uninitialized memory block of the size defined at pool creation time from the memory pool.cp_mempool_calloc returns a memory block of the size defined at pool creation time, initialized to contain zeros.