mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 08:36:15 +00:00
Kernel+Userland: Remove global futexes
We only ever use private futexes, so it doesn't make sense to carry around all the complexity required for global (cross-process) futexes.
This commit is contained in:
@@ -10,6 +10,14 @@
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
FutexQueue::FutexQueue()
|
||||
{
|
||||
}
|
||||
|
||||
FutexQueue::~FutexQueue()
|
||||
{
|
||||
}
|
||||
|
||||
bool FutexQueue::should_add_blocker(Thread::Blocker& b, void* data)
|
||||
{
|
||||
VERIFY(data != nullptr); // Thread that is requesting to be blocked
|
||||
|
||||
Reference in New Issue
Block a user