Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
102
void* 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
110
void dl_free(void *p) {
111
LOCK(&lk) {
Callers
2
init_symtab
Function · 0.85
realloc
Function · 0.85
Calls
1
dlrealloc
Function · 0.85
Tested by
no test coverage detected