forked from Bananymous/banan-os
Kernel/LibC: Implement super basic select
This does not really even block but it works... :D
This commit is contained in:
@@ -208,10 +208,4 @@ namespace Kernel::Input
|
||||
}
|
||||
}
|
||||
|
||||
bool PS2Keyboard::has_data_impl() const
|
||||
{
|
||||
CriticalScope _;
|
||||
return !m_event_queue.empty();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -192,10 +192,4 @@ namespace Kernel::Input
|
||||
}
|
||||
}
|
||||
|
||||
bool PS2Mouse::has_data_impl() const
|
||||
{
|
||||
CriticalScope _;
|
||||
return !m_event_queue.empty();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user