Re-initialize the parameters of the allocator. */
| 195 | |
| 196 | /** Re-initialize the parameters of the allocator. */ |
| 197 | void |
| 198 | re_init(const char * /* name ATS_UNUSED */, unsigned int element_size, unsigned int /* chunk_size ATS_UNUSED */, |
| 199 | unsigned int alignment, bool /* use_hugepages ATS_UNUSED */, int advice) |
| 200 | { |
| 201 | this->element_size = element_size; |
| 202 | this->alignment = alignment; |
| 203 | this->advice = advice; |
| 204 | } |
| 205 | |
| 206 | // Dummies |
| 207 | void |
no outgoing calls
no test coverage detected