Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/RedisGraph/RedisGraph
/ ObjectPool_Free
Function
ObjectPool_Free
src/util/object_pool/object_pool.c:132–138 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
130
}
131
132
void ObjectPool_Free(ObjectPool *pool) {
133
for(uint i = 0; i < pool->blockCount; i++) Block_Free(pool->blocks[i]);
134
135
rm_free(pool->blocks);
136
array_free(pool->deletedIdx);
137
rm_free(pool);
138
}
139
Callers
4
_ExecutionPlan_FreeInternals
Function · 0.85
test_objectPoolNew
Function · 0.85
test_objectPoolAddItem
Function · 0.85
test_objectPoolRemoveItem
Function · 0.85
Calls
3
Block_Free
Function · 0.85
rm_free
Function · 0.85
array_free
Function · 0.85
Tested by
3
test_objectPoolNew
Function · 0.68
test_objectPoolAddItem
Function · 0.68
test_objectPoolRemoveItem
Function · 0.68