fix (kernel): removed combine status logs from 'heap_memory_free'

This commit is contained in:
antifallobst 2023-02-17 12:45:12 +01:00
parent 6541fa49a7
commit 12cc5ca0e1
1 changed files with 2 additions and 4 deletions

View File

@ -196,10 +196,8 @@ void heap_memory_free(heap_T* heap, void* address) {
segment->free = true; segment->free = true;
// try to combine in both directions, so we don't splitter the heap in a ton of small segments // try to combine in both directions, so we don't splitter the heap in a ton of small segments
// TODO: the following combination is not working yet heap_segment_combine_prev(segment);
log(LOG_DEBUG, "<Free> CombinePrev[%?] CombineNext[%?]", heap_segment_combine_next(segment);
heap_segment_combine_prev(segment),
heap_segment_combine_next(segment));
} }