MCPcopy Create free account
hub / github.com/F-Stack/f-stack / zone_free

Function zone_free

app/redis-6.2.6/deps/jemalloc/src/zone.c:165–173  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

163}
164
165static void
166zone_free(malloc_zone_t *zone, void *ptr) {
167 if (ivsalloc(tsdn_fetch(), ptr) != 0) {
168 je_free(ptr);
169 return;
170 }
171
172 free(ptr);
173}
174
175static void *
176zone_realloc(malloc_zone_t *zone, void *ptr, size_t size) {

Callers 1

zone_batch_freeFunction · 0.85

Calls 4

ivsallocFunction · 0.85
tsdn_fetchFunction · 0.85
je_freeFunction · 0.85
freeFunction · 0.50

Tested by

no test coverage detected