2020-01-18 09:38:21 +01:00
|
|
|
/*
|
2021-04-28 22:46:44 +02:00
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
2020-01-18 09:38:21 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
2019-12-01 11:57:20 +01:00
|
|
|
#pragma once
|
|
|
|
|
2020-01-12 18:46:41 +01:00
|
|
|
#include <AK/Atomic.h>
|
2021-08-22 01:37:17 +02:00
|
|
|
#include <Kernel/Locking/Spinlock.h>
|
2019-12-22 12:23:44 +01:00
|
|
|
#include <Kernel/Thread.h>
|
2019-12-01 11:57:20 +01:00
|
|
|
|
2020-02-16 01:27:42 +01:00
|
|
|
namespace Kernel {
|
|
|
|
|
2021-08-22 15:59:47 +02:00
|
|
|
class WaitQueue final : public Thread::BlockerSet {
|
2019-12-01 11:57:20 +01:00
|
|
|
public:
|
2021-01-23 22:30:10 -07:00
|
|
|
u32 wake_one();
|
2020-12-21 23:21:58 -07:00
|
|
|
u32 wake_n(u32 wake_count);
|
|
|
|
u32 wake_all();
|
2020-12-07 21:29:41 -07:00
|
|
|
|
|
|
|
template<class... Args>
|
2022-04-01 20:58:27 +03:00
|
|
|
Thread::BlockResult wait_on(Thread::BlockTimeout const& timeout, Args&&... args)
|
2020-12-07 21:29:41 -07:00
|
|
|
{
|
2021-08-23 00:10:33 +02:00
|
|
|
return Thread::current()->block<Thread::WaitQueueBlocker>(timeout, *this, forward<Args>(args)...);
|
2020-12-07 21:29:41 -07:00
|
|
|
}
|
|
|
|
|
2021-02-14 15:02:14 -08:00
|
|
|
template<class... Args>
|
|
|
|
void wait_forever(Args&&... args)
|
|
|
|
{
|
2021-08-23 00:10:33 +02:00
|
|
|
(void)Thread::current()->block<Thread::WaitQueueBlocker>({}, *this, forward<Args>(args)...);
|
2021-02-14 15:02:14 -08:00
|
|
|
}
|
|
|
|
|
2020-12-07 21:29:41 -07:00
|
|
|
protected:
|
2021-08-24 01:07:16 +02:00
|
|
|
virtual bool should_add_blocker(Thread::Blocker& b, void*) override;
|
2019-12-01 11:57:20 +01:00
|
|
|
|
|
|
|
private:
|
2020-07-05 15:46:51 -06:00
|
|
|
bool m_wake_requested { false };
|
2019-12-01 11:57:20 +01:00
|
|
|
};
|
2020-02-16 01:27:42 +01:00
|
|
|
|
|
|
|
}
|