Move RGBController base destructor functionality into RGBController::Shutdown() so that update thread can be stopped before deleting the controller. Shutdown() must be called in every RGBController implementation before deleting the controller. Also some fixes to the NetworkServer to avoid deadlocking and disconnect issues

This commit is contained in:
Adam Honse committed 2026-07-07 01:35:34 -05:00
1 parent 6e71cd39b9
commit 3a74c85be8
341 files changed
+811 -37

No files matched your search

@@ -291,6 +291,8 @@ RGBController_RedSquareKeyrox::RGBController_RedSquareKeyrox(RedSquareKeyroxCont
RGBController_RedSquareKeyrox::~RGBController_RedSquareKeyrox()
{
Shutdown();
delete controller;
}