mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 14:47:44 +00:00
LibCore: Remove unused EventLoop::wake_current()
This commit is contained in:
parent
9601b516b8
commit
3a70a16ca7
2 changed files with 0 additions and 7 deletions
|
@ -894,11 +894,6 @@ void EventLoop::unregister_notifier(Badge<Notifier>, Notifier& notifier)
|
||||||
s_notifiers->remove(¬ifier);
|
s_notifiers->remove(¬ifier);
|
||||||
}
|
}
|
||||||
|
|
||||||
void EventLoop::wake_current()
|
|
||||||
{
|
|
||||||
EventLoop::current().wake();
|
|
||||||
}
|
|
||||||
|
|
||||||
void EventLoop::wake()
|
void EventLoop::wake()
|
||||||
{
|
{
|
||||||
dbgln_if(EVENTLOOP_DEBUG, "Core::EventLoop::wake()");
|
dbgln_if(EVENTLOOP_DEBUG, "Core::EventLoop::wake()");
|
||||||
|
|
|
@ -118,8 +118,6 @@ public:
|
||||||
|
|
||||||
static EventLoop& current();
|
static EventLoop& current();
|
||||||
|
|
||||||
static void wake_current();
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void wait_for_event(WaitMode);
|
void wait_for_event(WaitMode);
|
||||||
Optional<Time> get_next_timer_expiration();
|
Optional<Time> get_next_timer_expiration();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue