mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 08:37:46 +00:00
Kernel: Rename Locker => MutexLocker
This commit is contained in:
parent
ab50a1480f
commit
9457d83986
40 changed files with 230 additions and 230 deletions
|
@ -166,7 +166,7 @@ AnonymousVMObject::~AnonymousVMObject()
|
|||
|
||||
int AnonymousVMObject::purge()
|
||||
{
|
||||
Locker locker(m_paging_lock);
|
||||
MutexLocker locker(m_paging_lock);
|
||||
return purge_impl();
|
||||
}
|
||||
|
||||
|
|
|
@ -53,7 +53,7 @@ size_t InodeVMObject::amount_dirty() const
|
|||
|
||||
int InodeVMObject::release_all_clean_pages()
|
||||
{
|
||||
Locker locker(m_paging_lock);
|
||||
MutexLocker locker(m_paging_lock);
|
||||
return release_all_clean_pages_impl();
|
||||
}
|
||||
|
||||
|
|
|
@ -539,7 +539,7 @@ PageFaultResponse Region::handle_inode_fault(size_t page_index_in_region, Scoped
|
|||
VERIFY(!s_mm_lock.own_lock());
|
||||
VERIFY(!g_scheduler_lock.own_lock());
|
||||
|
||||
Locker locker(vmobject().m_paging_lock);
|
||||
MutexLocker locker(vmobject().m_paging_lock);
|
||||
|
||||
mm_lock.lock();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue