dreamos82 / Dreamos64

My experiments with osdev... again

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[KERNEL HEAP] The heap Should always use the VMM when possible

dreamos82 opened this issue · comments

The current kheap has several problem/bugs, because was written before the VMM.

The expand heap is relying on the old design, and that should not be the case anymore.

And the mapping should be handled probably by the VMM, not by the heap directly.

PR #207 will probably fix it too.