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-02-15 22:24:43 -06:00
1 parent e8ed3616bd
commit 6ddcb16787
331 files changed
+790 -37

No files matched your search

@@ -86,6 +86,8 @@ RGBController_EVGAGPUv1::RGBController_EVGAGPUv1(EVGAGPUv1Controller* controller
RGBController_EVGAGPUv1::~RGBController_EVGAGPUv1()
{
Shutdown();
delete controller;
}