Mrntt: Call mind.finalize() on mind object.

This commit is contained in:
2025-07-30 10:14:18 -04:00
parent 4fde28dad8
commit a2598e80fd
3 changed files with 6 additions and 0 deletions
+1
View File
@@ -14,6 +14,7 @@ class Mind
public:
void initialize(void);
void execute(void);
void finalize(void);
public:
std::thread directorThread;
+1
View File
@@ -105,6 +105,7 @@ void ComponentThread::marionetteMain(ComponentThread& self)
}
std::cout << __func__ << ": Exited event loop" << "\n";
mind.finalize();
shutdownSalmanoff();
}
catch (const std::exception& e)
+4
View File
@@ -22,4 +22,8 @@ void Mind::initialize()
}
}
void Mind::finalize(void)
{
}
} // namespace smo