VMManager: remove all backing block related functions
The shared_ptr<vector> type backing memory is unused now, and is not expected to be used in the future
This commit is contained in:
parent
7f9873d7ec
commit
b6ab4e466b
4 changed files with 1 additions and 77 deletions
|
@ -39,7 +39,7 @@ TEST_CASE("Memory Basics", "[kernel][memory]") {
|
|||
auto vma = manager->FindVMA(Memory::HEAP_VADDR);
|
||||
CHECK(vma != manager->vma_map.end());
|
||||
CHECK(vma->second.type == Kernel::VMAType::Free);
|
||||
CHECK(vma->second.backing_block == nullptr);
|
||||
CHECK(vma->second.backing_memory == nullptr);
|
||||
}
|
||||
|
||||
SECTION("changing memory permissions") {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue