diff options
author | Andreas Kling <kling@serenityos.org> | 2023-04-25 17:53:33 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-04-25 18:01:35 +0200 |
commit | e66313e53638dbdb3e1b89c84e7f8da79a322dcc (patch) | |
tree | 50463bfed0376c02480cf0573632f3a664fe5c88 /Userland/Libraries | |
parent | 7b963e1e98b095dcd52eac8169e5c366895e3de7 (diff) | |
download | serenity-e66313e53638dbdb3e1b89c84e7f8da79a322dcc.zip |
LibCore: Remove unused cruft in EventLoop.h
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibCore/EventLoop.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Userland/Libraries/LibCore/EventLoop.h b/Userland/Libraries/LibCore/EventLoop.h index e79ec3c2ad..4d09340091 100644 --- a/Userland/Libraries/LibCore/EventLoop.h +++ b/Userland/Libraries/LibCore/EventLoop.h @@ -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; }; |