MCPcopy Create free account
hub / github.com/GJDuck/e9patch / pool_realloc

Function pool_realloc

examples/stdlib.c:2433–2436  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2431 return calloc_impl(pool, nmemb, size, /*lock=*/true);
2432}
2433static void *pool_realloc(struct malloc_pool_s *pool, void *ptr, size_t size)
2434{
2435 return realloc_impl(pool, ptr, size, /*lock=*/true);
2436}
2437static void pool_free(struct malloc_pool_s *pool, void *ptr)
2438{
2439 free_impl(pool, ptr, /*lock=*/true);

Callers

nothing calls this directly

Calls 1

realloc_implFunction · 0.85

Tested by

no test coverage detected