Skip to content

Commit

Permalink
eventloop: don't dispatch in enterLoop
Browse files Browse the repository at this point in the history
ref #6842, BSD blocks in udev on no event apparently
  • Loading branch information
vaxerski committed Aug 9, 2024
1 parent 8b37e81 commit 4fdc0d5
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/managers/eventLoop/EventLoopManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ void CEventLoopManager::enterLoop() {
aqPollFDs = g_pCompositor->m_pAqBackend->getPollFDs();
for (auto& fd : aqPollFDs) {
m_sWayland.aqEventSources.emplace_back(wl_event_loop_add_fd(m_sWayland.loop, fd->fd, WL_EVENT_READABLE, aquamarineFDWrite, fd.get()));
fd->onSignal(); // dispatch outstanding
}

wl_display_run(m_sWayland.display);
Expand Down

0 comments on commit 4fdc0d5

Please sign in to comment.