diff --git a/src/memory/frame.c b/src/memory/frame.c index b02e23d..1703e55 100644 --- a/src/memory/frame.c +++ b/src/memory/frame.c @@ -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++) ;