92 * @return the created memory pool or @c NULL if allocation failed |
93 * @return the created memory pool or @c NULL if allocation failed |
93 */ |
94 */ |
94 cx_attr_nodiscard |
95 cx_attr_nodiscard |
95 cx_attr_malloc |
96 cx_attr_malloc |
96 cx_attr_dealloc(cxMempoolFree, 1) |
97 cx_attr_dealloc(cxMempoolFree, 1) |
|
98 cx_attr_export |
97 CxMempool *cxMempoolCreate(size_t capacity, cx_destructor_func destr); |
99 CxMempool *cxMempoolCreate(size_t capacity, cx_destructor_func destr); |
98 |
100 |
99 /** |
101 /** |
100 * Creates a basic array-based memory pool. |
102 * Creates a basic array-based memory pool. |
101 * |
103 * |
102 * @param capacity (@c size_t) the initial capacity of the pool |
104 * @param capacity (@c size_t) the initial capacity of the pool |
103 * @return (@c CxMempool*) the created memory pool or @c NULL if allocation failed |
105 * @return (@c CxMempool*) the created memory pool or @c NULL if allocation failed |
104 */ |
106 */ |
105 #define cxBasicMempoolCreate(capacity) cxMempoolCreate(capacity, NULL) |
107 #define cxMempoolCreateSimple(capacity) cxMempoolCreate(capacity, NULL) |
106 |
108 |
107 /** |
109 /** |
108 * Sets the destructor function for a specific allocated memory object. |
110 * Sets the destructor function for a specific allocated memory object. |
109 * |
111 * |
110 * If the memory is not managed by a UCX memory pool, the behavior is undefined. |
112 * If the memory is not managed by a UCX memory pool, the behavior is undefined. |
143 * @param destr the destructor function |
147 * @param destr the destructor function |
144 * @retval zero success |
148 * @retval zero success |
145 * @retval non-zero failure |
149 * @retval non-zero failure |
146 */ |
150 */ |
147 cx_attr_nonnull |
151 cx_attr_nonnull |
|
152 cx_attr_export |
148 int cxMempoolRegister( |
153 int cxMempoolRegister( |
149 CxMempool *pool, |
154 CxMempool *pool, |
150 void *memory, |
155 void *memory, |
151 cx_destructor_func destr |
156 cx_destructor_func destr |
152 ); |
157 ); |