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

Function calloc_unlocked

examples/stdlib.c:2412–2415  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2410 return malloc_impl(NULL, size, /*lock=*/false);
2411}
2412static void *calloc_unlocked(size_t nmemb, size_t size)
2413{
2414 return calloc_impl(NULL, nmemb, size, /*lock=*/false);
2415}
2416static void *realloc_unlocked(void *ptr, size_t size)
2417{
2418 return realloc_impl(NULL, ptr, size, /*lock=*/false);

Callers

nothing calls this directly

Calls 1

calloc_implFunction · 0.85

Tested by

no test coverage detected