1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:08:11 +00:00

LibCore: Remove unused cruft in EventLoop.h

This commit is contained in:
Andreas Kling 2023-04-25 17:53:33 +02:00
parent 7b963e1e98
commit e66313e536

View file

@ -94,17 +94,9 @@ public:
static EventLoop& current();
void did_post_event(Badge<ThreadEventQueue>);
EventLoopImplementation& impl() { return *m_impl; }
private:
void wait_for_event(WaitMode);
Optional<Time> get_next_timer_expiration();
static void dispatch_signal(int);
static void handle_signal(int);
static pid_t s_pid;
NonnullOwnPtr<EventLoopImplementation> m_impl;
};