clean: remove print

This commit is contained in:
Starnakin 2024-10-29 15:18:08 +01:00
parent ff058d0ae1
commit 5fba376e2f

View File

@ -14,10 +14,8 @@ static uint32_t remaining_frames = MAX_FRAMES;
static int32_t find_next_block(size_t nb_frames)
{
PRINT_UINT(CEIL(HEAP_START, PAGE_SIZE));
for (uint32_t i = CEIL(HEAP_START, PAGE_SIZE);
i + nb_frames < MAX_FRAMES; i++) {
PRINT_UINT(i);
uint32_t j;
for (j = 0; frame_table[i + j] == 0 && j < nb_frames; j++)
;