Compare commits

1 Commits

Author SHA1 Message Date
f09fe03e0d workaround hangs on PIBroadcast::stopRead 2025-03-06 16:26:38 +03:00

View File

@@ -240,8 +240,8 @@ void PIBroadcast::stopRead() {
if (isRunning()) stopAndWait();
PIMutexLocker ml(mcast_mutex);
for (auto * e: eth_mcast)
e->stopAndWait();
if (eth_lo) eth_lo->stopAndWait();
e->stopAndWait(5_s);
if (eth_lo) eth_lo->stopAndWait(5_s);
_started = false;
}