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

Kernel: Use a Lockable<bool> for sysctl booleans as well.

This commit is contained in:
Andreas Kling 2019-02-08 16:18:24 +01:00
parent e78e032c19
commit 33d34d9b26
5 changed files with 29 additions and 15 deletions

View file

@ -110,6 +110,6 @@ private:
mutable Lock m_lock;
bool m_flash_flush { false };
Lockable<bool> m_flash_flush;
bool m_buffers_are_flipped { false };
};