WindowServer: Remove "unsafe" flag in WSMessageLoop::post_event().

This hack is no longer needed now that we have a Finalizer process that can
take locks without having to worry about the interrupt flag.
This commit is contained in:
Andreas Kling 2019-02-11 13:05:51 +01:00
commit 26230c0647
Notes: sideshowbarker 2024-07-19 15:47:21 +09:00
3 changed files with 4 additions and 13 deletions

View file

@ -15,7 +15,7 @@ public:
int exec();
void post_message(WSMessageReceiver* receiver, OwnPtr<WSMessage>&&, bool unsafe = false);
void post_message(WSMessageReceiver* receiver, OwnPtr<WSMessage>&&);
static WSMessageLoop& the();