1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:47:35 +00:00

Kernel: Mark BlockCondition subclasses as final

This commit is contained in:
Andreas Kling 2021-08-22 15:30:14 +02:00
parent bcd2025311
commit 53019f413c
6 changed files with 6 additions and 6 deletions

View file

@ -12,7 +12,7 @@
namespace Kernel {
class WaitQueue : public Thread::BlockCondition {
class WaitQueue final : public Thread::BlockCondition {
public:
u32 wake_one();
u32 wake_n(u32 wake_count);