mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 01:51:03 +09: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
|
@ -61,7 +61,7 @@ void* SharedBuffer::ref_for_process_and_get_address(Process& process)
|
|||
ref.count++;
|
||||
m_total_refs++;
|
||||
if (ref.region == nullptr) {
|
||||
ref.region = process.allocate_region_with_vmo(VirtualAddress(), size(), m_vmobject, 0, "SharedBuffer", PROT_READ | (m_writable ? PROT_WRITE : 0));
|
||||
ref.region = process.allocate_region_with_vmobject(VirtualAddress(), size(), m_vmobject, 0, "SharedBuffer", PROT_READ | (m_writable ? PROT_WRITE : 0));
|
||||
ref.region->set_shared(true);
|
||||
}
|
||||
sanity_check("ref_for_process_and_get_address");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue