clean: remove print
This commit is contained in:
parent
ff058d0ae1
commit
5fba376e2f
@ -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++)
|
||||
;
|
||||
|
Loading…
Reference in New Issue
Block a user