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

Kernel: Switch VMObject to IntrusiveList from InlineLinkedList

This commit is contained in:
Brian Gianforcaro 2021-05-26 02:57:46 -07:00 committed by Andreas Kling
parent e6f73d69a2
commit 2045782a6e
3 changed files with 9 additions and 10 deletions

View file

@ -239,7 +239,7 @@ private:
Vector<PhysicalMemoryRange> m_physical_memory_ranges;
Vector<ContiguousReservedMemoryRange> m_reserved_memory_ranges;
InlineLinkedList<VMObject> m_vmobjects;
VMObject::List m_vmobjects;
};
template<typename Callback>