v1.4.85 versioning

This commit is contained in:
Robin E. R. Davies
2025-07-26 18:42:52 -04:00
parent 1af5e0d1ca
commit e71c4f3f02
9 changed files with 407 additions and 172 deletions
+7
View File
@@ -319,12 +319,19 @@ int main(int argc, char *argv[])
sigaddset(&sigSet, SIGTERM);
sigaddset(&sigSet, SIGUSR1);
// block these signasl for all threads.
s = pthread_sigmask(SIG_BLOCK, &sigSet, NULL);
if (s != 0)
{
throw std::logic_error("pthread_sigmask failed.");
}
// Clear any pending signals before waiting
struct timespec timeout = {0, 0};
while (sigtimedwait(&sigSet, NULL, &timeout) > 0) {
// Consume any pending signals
}
PiPedalModel model;
model.SetNetworkChangedListener(