From 5fba376e2f5f727bf97978aaaee60672176cf04f Mon Sep 17 00:00:00 2001 From: Starnakin Date: Tue, 29 Oct 2024 15:18:08 +0100 Subject: [PATCH] clean: remove print --- src/memory/frame.c | 2 -- 1 file changed, 2 deletions(-) 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++) ;