mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
fix(network): don't block the main thread on rfkill update
Moving rfkill to the main event loop had unexpected side-effects. Notably, the network module mutex can block all the main thread events for several seconds while the network worker thread is sleeping. Instead of waiting for the mutex let's hope that the worker thread succeeds and schedule timer thread wakeup just in case.
This commit is contained in:
parent
52dd3d2446
commit
6d5afdaa5f
@ -213,11 +213,11 @@ void waybar::modules::Network::worker() {
|
||||
};
|
||||
#ifdef WANT_RFKILL
|
||||
rfkill_.on_update.connect([this](auto &) {
|
||||
std::lock_guard<std::mutex> lock(mutex_);
|
||||
if (ifid_ > 0) {
|
||||
getInfo();
|
||||
dp.emit();
|
||||
}
|
||||
/* If we are here, it's likely that the network thread already holds the mutex and will be
|
||||
* holding it for a next few seconds.
|
||||
* Let's delegate the update to the timer thread instead of blocking the main thread.
|
||||
*/
|
||||
thread_timer_.wake_up();
|
||||
});
|
||||
#else
|
||||
spdlog::warn("Waybar has been built without rfkill support.");
|
||||
|
Loading…
Reference in New Issue
Block a user