LibCore: Remove unused EventLoop::wake_current()

This commit is contained in:
Andreas Kling 2023-04-23 19:01:39 +02:00
parent 9601b516b8
commit 3a70a16ca7
Notes: sideshowbarker 2024-07-16 21:42:29 +09:00
2 changed files with 0 additions and 7 deletions

View file

@ -894,11 +894,6 @@ void EventLoop::unregister_notifier(Badge<Notifier>, Notifier& notifier)
s_notifiers->remove(&notifier);
}
void EventLoop::wake_current()
{
EventLoop::current().wake();
}
void EventLoop::wake()
{
dbgln_if(EVENTLOOP_DEBUG, "Core::EventLoop::wake()");

View file

@ -118,8 +118,6 @@ public:
static EventLoop& current();
static void wake_current();
private:
void wait_for_event(WaitMode);
Optional<Time> get_next_timer_expiration();