Added new method declarations to kernel class

This commit is contained in:
Nathan Giddings
2020-12-11 10:35:09 -06:00
parent 39945f33d7
commit 512f81f515
2 changed files with 53 additions and 4 deletions

View File

@@ -19,10 +19,14 @@ public:
bool hasSharedBlock(unsigned int blockID) const;
bool hasPhysicalBlock(unsigned int blockID) const;
private:
Map<unsigned int, MemoryBlock&> m_sharedBlocks;
Map<unsigned int, MemoryBlock&> m_physicalBlocks;
};
}