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

Function pool_malloc

examples/stdlib.c:2425–2428  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2423}
2424
2425static void *pool_malloc(struct malloc_pool_s *pool, size_t size)
2426{
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);

Callers 1

pool_tsearchFunction · 0.85

Calls 1

malloc_implFunction · 0.85

Tested by

no test coverage detected