1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:47:45 +00:00

Kernel: Add AnonymousVMObject constructor for a Vector of physical pages

This will be used later on by the AHCI code to create a Region
that spans over scattered DMA pages.
This commit is contained in:
Liav A 2021-02-26 14:32:43 +02:00 committed by Andreas Kling
parent e65fd83e23
commit ecb169b61e
4 changed files with 22 additions and 0 deletions

View file

@ -88,6 +88,7 @@ public:
}
protected:
VMObject();
explicit VMObject(size_t);
explicit VMObject(const VMObject&);