1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:37:45 +00:00

Revert "LibIPC: Use a zero-delay timer for message processing"

This reverts commit 3bed7d5a5e.

As discovered by tomuta, this caused a large increase in WindowServer
CPU usage.
This commit is contained in:
Andreas Kling 2021-11-03 19:55:59 +01:00
parent 60a245b065
commit 99a33c9a67
2 changed files with 3 additions and 4 deletions

View file

@ -60,7 +60,6 @@ protected:
NonnullRefPtr<Core::LocalSocket> m_socket;
RefPtr<Core::Timer> m_responsiveness_timer;
RefPtr<Core::Timer> m_processing_timer;
RefPtr<Core::Notifier> m_notifier;
NonnullOwnPtrVector<Message> m_unprocessed_messages;