LibCore: Remove unused methods from EventLoop

This commit is contained in:
Lucas CHOLLET 2025-01-04 22:42:22 -05:00 committed by Andrew Kaster
parent 37e1d6ece1
commit e015a43b51
Notes: github-actions[bot] 2025-01-30 22:35:42 +00:00
9 changed files with 1 additions and 89 deletions

View file

@ -134,17 +134,6 @@ void EventLoopImplementationWindows::quit(int code)
m_exit_code = code;
}
void EventLoopImplementationWindows::unquit()
{
m_exit_requested = false;
m_exit_code = 0;
}
bool EventLoopImplementationWindows::was_exit_requested() const
{
return m_exit_requested;
}
void EventLoopImplementationWindows::post_event(EventReceiver& receiver, NonnullOwnPtr<Event>&& event)
{
m_thread_event_queue.post_event(receiver, move(event));
@ -157,12 +146,6 @@ void EventLoopImplementationWindows::wake()
SetEvent(m_wake_event);
}
void EventLoopImplementationWindows::notify_forked_and_in_child()
{
dbgln("Core::EventLoopManagerWindows::notify_forked_and_in_child() is not implemented");
VERIFY_NOT_REACHED();
}
static int notifier_type_to_network_event(NotificationType type)
{
switch (type) {