mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-04 23:57:25 +00:00
Kernel: Rename region_from_foo() => find_region_from_foo()
Let's emphasize that these functions actually go out and find regions.
This commit is contained in:
@@ -224,7 +224,7 @@ bool Process::deallocate_region(Region& region)
|
||||
return false;
|
||||
}
|
||||
|
||||
Region* Process::region_from_range(const Range& range)
|
||||
Region* Process::find_region_from_range(const Range& range)
|
||||
{
|
||||
ScopedSpinLock lock(m_lock);
|
||||
if (m_region_lookup_cache.range == range && m_region_lookup_cache.region)
|
||||
@@ -241,7 +241,7 @@ Region* Process::region_from_range(const Range& range)
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
Region* Process::region_containing(const Range& range)
|
||||
Region* Process::find_region_containing(const Range& range)
|
||||
{
|
||||
ScopedSpinLock lock(m_lock);
|
||||
for (auto& region : m_regions) {
|
||||
|
||||
Reference in New Issue
Block a user