| 2427 | return malloc_impl(pool, size, /*lock=*/true); |
| 2428 | } |
| 2429 | static void *pool_calloc(struct malloc_pool_s *pool, size_t nmemb, size_t size) |
| 2430 | { |
| 2431 | return calloc_impl(pool, nmemb, size, /*lock=*/true); |
| 2432 | } |
| 2433 | static void *pool_realloc(struct malloc_pool_s *pool, void *ptr, size_t size) |
| 2434 | { |
| 2435 | return realloc_impl(pool, ptr, size, /*lock=*/true); |
nothing calls this directly
no test coverage detected