mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-08 21:45:58 +01:00
unlock the event queue before sleeping
This commit is contained in:
parent
3829b1626e
commit
355ee15039
1 changed files with 1 additions and 1 deletions
|
@ -80,8 +80,8 @@ void CEventManager::startThread() {
|
||||||
eventQueueMutex.lock();
|
eventQueueMutex.lock();
|
||||||
|
|
||||||
if (m_dQueuedEvents.empty()){ // if queue empty, sleep and ignore
|
if (m_dQueuedEvents.empty()){ // if queue empty, sleep and ignore
|
||||||
std::this_thread::sleep_for(std::chrono::milliseconds(1));
|
|
||||||
eventQueueMutex.unlock();
|
eventQueueMutex.unlock();
|
||||||
|
std::this_thread::sleep_for(std::chrono::milliseconds(1));
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue