Skip to content

Commit 1525772

Browse files
committed
Impl Drop for los allocator
1 parent 6f29430 commit 1525772

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

mallockit/src/space/large_object_space.rs

+12
Original file line numberDiff line numberDiff line change
@@ -168,3 +168,15 @@ where
168168
}
169169
}
170170
}
171+
172+
impl<S: PageSize, const MAX_CACHEABLE_SIZE: usize, const THRESHOLD_SLOP: usize> Drop
173+
for LargeObjectAllocator<S, MAX_CACHEABLE_SIZE, THRESHOLD_SLOP>
174+
where
175+
[(); bins::<S>(MAX_CACHEABLE_SIZE)]: Sized,
176+
{
177+
fn drop(&mut self) {
178+
if Self::CACHE_ENABLED {
179+
self.clear_bins();
180+
}
181+
}
182+
}

0 commit comments

Comments
 (0)