mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-03 09:48:47 +00:00
Kernel: Rename vmo => vmobject everywhere
This commit is contained in:
parent
8ea4217c01
commit
b6ee8a2c8d
Notes:
sideshowbarker
2024-07-19 10:48:28 +09:00
Author: https://github.com/awesomekling
Commit: b6ee8a2c8d
15 changed files with 47 additions and 47 deletions
|
@ -6,16 +6,16 @@
|
|||
VMObject::VMObject(const VMObject& other)
|
||||
: m_physical_pages(other.m_physical_pages)
|
||||
{
|
||||
MM.register_vmo(*this);
|
||||
MM.register_vmobject(*this);
|
||||
}
|
||||
|
||||
VMObject::VMObject(size_t size)
|
||||
: m_physical_pages(ceil_div(size, PAGE_SIZE))
|
||||
{
|
||||
MM.register_vmo(*this);
|
||||
MM.register_vmobject(*this);
|
||||
}
|
||||
|
||||
VMObject::~VMObject()
|
||||
{
|
||||
MM.unregister_vmo(*this);
|
||||
MM.unregister_vmobject(*this);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue