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

Function malloc_unlocked

examples/stdlib.c:2408–2411  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2406}
2407
2408static void *malloc_unlocked(size_t size)
2409{
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);

Callers

nothing calls this directly

Calls 1

malloc_implFunction · 0.85

Tested by

no test coverage detected