1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:58:12 +00:00

Kernel: Rename Inode::m_lock => m_inode_lock

This makes file system code much easier to read since it was hard when
both the file system and inode locks were called "m_lock".
This commit is contained in:
Andreas Kling 2021-07-17 21:17:39 +02:00
parent 63e1423830
commit 3b805a57e6
8 changed files with 72 additions and 72 deletions

View file

@ -108,7 +108,7 @@ protected:
void did_modify_contents();
void did_delete_self();
mutable Mutex m_lock { "Inode" };
mutable Mutex m_inode_lock { "Inode" };
private:
FileSystem& m_file_system;