summaryrefslogtreecommitdiffstats
path: root/src/AllocationPool.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/AllocationPool.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/AllocationPool.h b/src/AllocationPool.h
index f03897f98..f1e324953 100644
--- a/src/AllocationPool.h
+++ b/src/AllocationPool.h
@@ -43,6 +43,10 @@ class AllocationPool {
void Free(T* ptr)
{
m_FreeList.push_front(ptr);
+ if (m_FreeList.size() == BufferSize)
+ {
+ StarvationCallbacks.OnStopUsingBuffer();
+ }
}
private: