mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 07:08:10 +00:00
Kernel: Rename "vmo" to "vmobject" everywhere
This commit is contained in:
parent
e5500e2a22
commit
e25ade7579
12 changed files with 54 additions and 54 deletions
|
@ -417,11 +417,11 @@ Optional<KBuffer> procfs$pid_vmo(InodeIdentifier identifier)
|
|||
region.size(),
|
||||
region.name().characters());
|
||||
builder.appendf("VMO: %s @ %x(%u)\n",
|
||||
region.vmo().is_anonymous() ? "anonymous" : "file-backed",
|
||||
®ion.vmo(),
|
||||
region.vmo().ref_count());
|
||||
for (size_t i = 0; i < region.vmo().page_count(); ++i) {
|
||||
auto& physical_page = region.vmo().physical_pages()[i];
|
||||
region.vmobject().is_anonymous() ? "anonymous" : "file-backed",
|
||||
®ion.vmobject(),
|
||||
region.vmobject().ref_count());
|
||||
for (size_t i = 0; i < region.vmobject().page_count(); ++i) {
|
||||
auto& physical_page = region.vmobject().physical_pages()[i];
|
||||
builder.appendf("P%x%s(%u) ",
|
||||
physical_page ? physical_page->paddr().get() : 0,
|
||||
region.should_cow(i) ? "!" : "",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue