You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When realloc() is called with a smaller size than the current block,
we can avoid allocating a new block and copying data. Instead, split
the existing block into two smaller blocks using the split_block()
helper.
This fast path improves performance for shrinking realloc() calls and
triggers selective coalescing only when fragmentation exceeds the
threshold.
0 commit comments