1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 20:17:44 +00:00

Kernel: Turn VirtIOGPU operation lock from mutex into spinlock

This commit is contained in:
Andreas Kling 2022-02-03 15:43:54 +01:00
parent ca42621be1
commit 200589ba27
3 changed files with 7 additions and 7 deletions

View file

@ -141,7 +141,7 @@ private:
// Synchronous commands
WaitQueue m_outstanding_request;
Mutex m_operation_lock;
Spinlock m_operation_lock;
OwnPtr<Memory::Region> m_scratch_space;
};
}