Flanterm can write to fb but page fault before process creation. (BEFORE KHEAP UPDATE)

This commit is contained in:
2026-03-04 12:21:20 +01:00
parent 9df33b49d8
commit a7d9e70a61
10 changed files with 33 additions and 49 deletions

View File

@@ -56,7 +56,7 @@ void kheap_init()
head->size = PAGE_SIZE - sizeof(struct heap_block_t);
head->free = true;
head->next = NULL;
DEBUG("kheap initialized, head=0x%p, size=%u", head, head->size);
DEBUG("kernel heap initialized, head=0x%p, max_size=%u bytes", head, KHEAP_SIZE);
}
void* kmalloc(size_t size)