fix(UDPHandler): data race #3613; clean up all Net tsan warnings

This commit is contained in:
Alex Fabijanic
2022-05-27 21:57:34 -05:00
parent 216d5ae3a4
commit 71a3a79ec9
18 changed files with 75 additions and 54 deletions

View File

@@ -61,7 +61,7 @@ private:
Poco::Net::NetworkInterface _if;
Poco::Thread _thread;
Poco::Event _ready;
bool _stop;
std::atomic<bool> _stop;
};