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

Function pool_calloc

examples/stdlib.c:2429–2432  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2427 return malloc_impl(pool, size, /*lock=*/true);
2428}
2429static 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}
2433static void *pool_realloc(struct malloc_pool_s *pool, void *ptr, size_t size)
2434{
2435 return realloc_impl(pool, ptr, size, /*lock=*/true);

Callers

nothing calls this directly

Calls 1

calloc_implFunction · 0.85

Tested by

no test coverage detected