MCPcopy Create free account
hub / github.com/bloomberg/comdb2 / dl_realloc

Function dl_realloc

db/memdebug.c:102–108  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

100}
101
102void* dl_realloc(void *p, size_t sz) {
103 void *out;
104 LOCK(&lk) {
105 out = dlrealloc(p, sz);
106 } UNLOCK(&lk);
107 return out;
108}
109
110void dl_free(void *p) {
111 LOCK(&lk) {

Callers 2

init_symtabFunction · 0.85
reallocFunction · 0.85

Calls 1

dlreallocFunction · 0.85

Tested by

no test coverage detected