1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:07:36 +00:00

Kernel: Add mechanism to identity map the lowest 2MB

This commit is contained in:
Tom 2020-06-01 22:55:09 -06:00 committed by Andreas Kling
parent 19190267a6
commit 841364b609
7 changed files with 40 additions and 12 deletions

View file

@ -90,6 +90,11 @@ public:
void dump() const;
bool contains(const Range& range) const
{
return m_total_range.contains(range);
}
private:
void carve_at_index(int, const Range&);