1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:57:43 +00:00

Kernel: Add proper locking to SynthFS and stop disabling interrupts.

This commit is contained in:
Andreas Kling 2019-02-07 10:47:11 +01:00
parent b5e5541cbc
commit 4df92709c8
3 changed files with 12 additions and 4 deletions

View file

@ -37,6 +37,7 @@ protected:
private:
InodeIndex m_next_inode_index { 2 };
HashMap<InodeIndex, RetainPtr<SynthFSInode>> m_inodes;
mutable Lock m_lock;
};
struct SynthFSInodeCustomData {