mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-12 02:30:30 +09:00
Kernel: Move VMObject::for_each_region() to MemoryManager.h
It can't be in VMObject.h since it depends on MemoryManager.h
This commit is contained in:
parent
a22b7f96fc
commit
65229a4082
Notes:
sideshowbarker
2024-07-19 10:54:30 +09:00
Author: https://github.com/awesomekling
Commit: 65229a4082
2 changed files with 15 additions and 15 deletions
|
@ -102,18 +102,3 @@ void InodeVMObject::inode_contents_changed(Badge<Inode>, off_t offset, ssize_t s
|
|||
region.remap();
|
||||
});
|
||||
}
|
||||
|
||||
template<typename Callback>
|
||||
void VMObject::for_each_region(Callback callback)
|
||||
{
|
||||
// FIXME: Figure out a better data structure so we don't have to walk every single region every time an inode changes.
|
||||
// Perhaps VMObject could have a Vector<Region*> with all of his mappers?
|
||||
for (auto& region : MM.m_user_regions) {
|
||||
if (®ion.vmobject() == this)
|
||||
callback(region);
|
||||
}
|
||||
for (auto& region : MM.m_kernel_regions) {
|
||||
if (®ion.vmobject() == this)
|
||||
callback(region);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue