mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 08:36:15 +00:00
LibC: free() should move kept empty ChunkedBlocks to the end of the list.
This ensures that we continue allocating from partially-used blocks until they are full.
This commit is contained in:
@@ -204,6 +204,13 @@ void free(void* ptr)
|
||||
#ifdef MALLOC_DEBUG
|
||||
dbgprintf("Keeping block %p around for size class %u\n", block, good_size);
|
||||
#endif
|
||||
if (allocator->blocks.tail() != block) {
|
||||
#ifdef MALLOC_DEBUG
|
||||
dbgprintf("Moving block %p to tail of list for size class %u\n", block, good_size);
|
||||
#endif
|
||||
allocator->blocks.remove(block);
|
||||
allocator->blocks.append(block);
|
||||
}
|
||||
return;
|
||||
}
|
||||
#ifdef MALLOC_DEBUG
|
||||
|
||||
Reference in New Issue
Block a user